From 051e42f5bee29f7c0d49fb135aa4e08dd0217243 Mon Sep 17 00:00:00 2001 From: Niek Palm Date: Fri, 10 Jan 2025 15:29:14 +0100 Subject: [PATCH] fix(ci): at attestation for release artifacts --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 00f58a6aa..f995f2384 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,7 +54,7 @@ jobs: gh release view ${{ github.event.inputs.version }} --json body -q '.body' > new-release-notes.md echo "## Attestation" >> new-release-notes.md echo "Attestation url: ${{ steps.attest.outputs.attestation-url }}" >> new-release-notes.md - echo "You can verify the artifacts by running \`gh attest verify --repo npalm/atterstation-test\`" >> new-release-notes.md + echo "Verify the artifacts by running \`gh attest verify --repo ${{ github.repository }}\`" >> new-release-notes.md gh release edit ${{ steps.release.outputs.tag_name }} -F new-release-notes.md -t ${{ steps.release.outputs.tag_name }} - name: Upload release assets if: ${{ steps.release.outputs.releases_created == 'true' }}