Skip to content

Merge pull request #10 from German-BioImaging/add_badges #41

Merge pull request #10 from German-BioImaging/add_badges

Merge pull request #10 from German-BioImaging/add_badges #41

Workflow file for this run

---
name: PyPI
on: push
jobs:
build-n-publish:
name: Build and publish Python distribution to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Run flake8
run: |
python -mpip install flake8
flake8 .
- name: Build a binary wheel and a source tarball
run: |
python -mpip install wheel
python setup.py sdist bdist_wheel
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.3.0
with:
password: ${{ secrets.PYPI_TOKEN }}