Skip to content

Commit

Permalink
Fix path for attestation
Browse files Browse the repository at this point in the history
  • Loading branch information
tupui committed Jul 14, 2024
1 parent a6e590e commit 165a026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
- name: Generate artifact attestation for sdist and wheels
uses: actions/attest-build-provenance@5e9cb68e95676991667494a6a4e59b8a2f13e1d0
with:
subject-path: "dist/tansu*"
subject-path: "tansu/dist/tansu*"

- name: Verify artifact attestation
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: |
for artifact in dist/*; do
for artifact in tansu/dist/*; do
echo "# ${artifact}"
gh attestation verify "${artifact}" --repo ${{ github.repository }}
done
Expand Down

0 comments on commit 165a026

Please sign in to comment.