From 165a0262aeba43aee012cc99132348b6a4a043ed Mon Sep 17 00:00:00 2001 From: Tupui <23188539+tupui@users.noreply.github.com> Date: Mon, 15 Jul 2024 00:14:14 +0200 Subject: [PATCH] Fix path for attestation --- .github/workflows/python-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-release.yml b/.github/workflows/python-release.yml index 261e588..1ea1291 100644 --- a/.github/workflows/python-release.yml +++ b/.github/workflows/python-release.yml @@ -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