Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build PyPI Package (and upload releases) | |
on: | |
push: | |
branches: [main] | |
tags: ["*"] | |
pull_request: | |
branches: [main] | |
release: | |
types: | |
- published | |
permissions: | |
contents: read | |
jobs: | |
build-package: | |
name: Build package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install Hatch | |
run: pip install hatch --disable-pip-version-check | |
- name: Build package | |
run: hatch build | |
- name: Save package artifacts | |
uses: actions/upload-artifact@v4 | |
# this might have issues with v4 (duplicate uploads?) | |
with: | |
name: Packages | |
path: dist | |
release-pypi: | |
name: Publish released package to pypi.org | |
if: github.event.action == 'published' | |
runs-on: ubuntu-latest | |
needs: build-package | |
steps: | |
- name: Download built package artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: Packages | |
path: dist | |
- name: Upload package to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |