We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f93cf9 commit c3c29e9Copy full SHA for c3c29e9
.github/workflows/deploy.yml
@@ -19,12 +19,20 @@ jobs:
19
deploy:
20
runs-on: ubuntu-latest
21
if: startsWith(github.ref, 'refs/tags/v')
22
+ permissions:
23
+ attestations: write
24
+
25
steps:
26
- uses: actions/download-artifact@v4
27
with:
28
name: Packages
29
path: dist
30
31
+ - name: Generate artifact attestation for sdist and wheel
32
+ uses: actions/attest-build-provenance@v2
33
+ with:
34
+ subject-path: "dist/*"
35
36
- name: Publish package
37
uses: pypa/gh-action-pypi-publish@release/v1
38
0 commit comments