Skip to content

Bump version: 2024.6.26 → 2024.7.31 #21

Bump version: 2024.6.26 → 2024.7.31

Bump version: 2024.6.26 → 2024.7.31 #21

Workflow file for this run

name: Imagemounter release
on: [push]
jobs:
pypi-publish:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Check out repository
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Build wheel
run: sudo pip install wheel && sudo python setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1