0.10.1 #6
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: Publish to PyPI | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Build distributions | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install build | |
python -m build | |
- name: Upload distributions | |
uses: actions/upload-artifact@v4 | |
with: | |
name: slither-dists | |
path: dist/ | |
publish: | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
id-token: write # For trusted publishing + codesigning. | |
contents: write # For attaching signing artifacts to the release. | |
needs: | |
- build-release | |
steps: | |
- name: fetch dists | |
uses: actions/download-artifact@v4 | |
with: | |
name: slither-dists | |
path: dist/ | |
- name: publish | |
uses: pypa/[email protected] | |
- name: sign | |
uses: sigstore/[email protected] | |
with: | |
inputs: ./dist/*.tar.gz ./dist/*.whl | |
release-signing-artifacts: true |