From 7511c626b5b3a68a512fe784b29e6dfb02db9fec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jukka=20Palom=C3=A4ki?= Date: Thu, 19 Jun 2025 10:32:23 +0300 Subject: [PATCH] fix(docs): github artifact attestation command in release notes Looks like the subcommand has changed to `attestation`: https://cli.github.com/manual/gh_attestation --- .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 105ee758e7..65dab382d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,7 +62,7 @@ jobs: gh release view $version --json body -q '.body' > new-release-notes.md echo "## Attestation" >> new-release-notes.md echo "Attestation url: $attestation_url" >> new-release-notes.md - echo "Verify the artifacts by running \`gh attest verify --repo ${{ github.repository }}\`" >> new-release-notes.md + echo "Verify the artifacts by running \`gh attestation verify --repo ${{ github.repository }}\`" >> new-release-notes.md gh release edit $tag_name -F new-release-notes.md -t $tag_name - name: Upload release assets if: ${{ steps.release.outputs.releases_created == 'true' }}