Skip to content

Merge pull request #15 from NFDI4BIOIMAGE/dev #22

Merge pull request #15 from NFDI4BIOIMAGE/dev

Merge pull request #15 from NFDI4BIOIMAGE/dev #22

Workflow file for this run

name: PyPI
on:
push:
tags:
- '*'
jobs:
build-n-publish:
name: Build and publish Python distribution to PyPI
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Build a binary wheel and a source tarball
run: |
python -m pip install build
python -m build
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_PASSWORD }}