supervision-0.30.1 #84
Workflow file for this run
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
| name: Publish Supervision Releases to PyPI | |
| on: | |
| release: | |
| types: [published] | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main, develop] | |
| paths: | |
| - ".github/workflows/build-package.yml" | |
| - ".github/workflows/publish-release.yml" | |
| permissions: {} # Explicitly remove all permissions by default | |
| jobs: | |
| build: | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/build-package.yml | |
| publish-release: | |
| name: Publish Release Package | |
| needs: build | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: release | |
| url: https://pypi.org/project/supervision/ | |
| timeout-minutes: 10 | |
| permissions: | |
| id-token: write # Required for PyPI publishing | |
| contents: write # Required for checkout and upload assets | |
| steps: | |
| - name: π₯ Download distribution artifacts | |
| uses: actions/download-artifact@v8 | |
| with: | |
| name: dist | |
| path: dist/ | |
| - name: List distribution artifacts | |
| run: ls -lh dist/ | |
| - name: π¦ Upload assets to Release | |
| if: github.event_name == 'release' | |
| uses: AButler/upload-release-assets@v4.0 | |
| with: | |
| files: "dist/*" | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: π Publish to PyPi | |
| # We only want to publish to PyPi if the event is a release and it's not a pre-release. | |
| if: (github.event_name == 'release' && github.event.release.prerelease != true) || github.event_name == 'workflow_dispatch' | |
| uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2 | |
| with: | |
| attestations: true |