Skip to content

Publish Python distribution to PyPI #5

Publish Python distribution to PyPI

Publish Python distribution to PyPI #5

Workflow file for this run

name: Publish Python distribution to PyPI
on:
release:
types: [created]
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install pypa/build
run: python -m pip install build
working-directory: ./fedn
- name: Build package
run: python -m build
working-directory: ./fedn
- name: Publish to Test PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
packages_dir: fedn/dist