From 83efbcbd5db8e9f4f359070734af7e69a5bd1243 Mon Sep 17 00:00:00 2001 From: James B Date: Wed, 13 Nov 2024 15:17:13 +0000 Subject: [PATCH] pypi: Automatic Releases --- .github/workflows/pypi.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/pypi.yml diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml new file mode 100644 index 0000000..ef66e85 --- /dev/null +++ b/.github/workflows/pypi.yml @@ -0,0 +1,32 @@ +name: Upload release to PyPI (Test & Live) +on: + push: + branches: [automatic-pypi-releases] + release: + types: [published] + +jobs: + pypi-publish: + name: Upload release to PyPI (Test & Live) + runs-on: ubuntu-latest + environment: + name: pypi + url: https://pypi.org/p/PROJECTNAME + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.12' + - run: pip install --upgrade build + - run: python -m build --sdist --wheel + - name: Publish package distributions to TEST PyPI + if: github.event_name == 'push' + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://test.pypi.org/legacy/ + skip-existing: true + - name: Publish package distributions to LIVE PyPI + if: github.event_name == 'release' + uses: pypa/gh-action-pypi-publish@release/v1