MAINT: Prep for 0.8.2, fix CircleCI deploy key for gh-pages #18
This file contains hidden or 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
| # Upload a Python Package using Twine when a release is created | |
| name: Build | |
| on: # yamllint disable-line rule:truthy | |
| release: | |
| types: [published] | |
| push: | |
| branches: ["master", "maint/*"] | |
| pull_request: | |
| branches: ["master", "maint/*"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| package: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install build twine pillow | |
| - run: python -m build --sdist --wheel | |
| - run: twine check --strict dist/* | |
| - uses: actions/upload-artifact@v5 | |
| with: | |
| name: dist | |
| path: dist | |
| pypi-upload: | |
| needs: package | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'release' | |
| permissions: | |
| id-token: write # for trusted publishing | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/python-picard | |
| steps: | |
| - uses: actions/download-artifact@v6 | |
| with: | |
| name: dist | |
| path: dist | |
| - uses: pypa/gh-action-pypi-publish@release/v1 | |
| if: github.event_name == 'release' |