mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.2 KiB
54 lines
1.2 KiB
name: Publish to PyPI
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build-release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
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@v3
|
|
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@v3
|
|
with:
|
|
name: slither-dists
|
|
path: dist/
|
|
|
|
- name: publish
|
|
uses: pypa/gh-action-pypi-publish@v1.8.7
|
|
|
|
- name: sign
|
|
uses: sigstore/gh-action-sigstore-python@v1.2.3
|
|
with:
|
|
inputs: ./dist/*.tar.gz ./dist/*.whl
|
|
release-signing-artifacts: true
|
|
bundle-only: true
|
|
|