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 564b970 commit c8013a2Copy full SHA for c8013a2
.github/workflows/cd.yaml
@@ -55,6 +55,8 @@ jobs:
55
56
permissions:
57
contents: write
58
+ id-token: write
59
+ attestations: write
60
actions: read
61
62
env:
@@ -90,6 +92,11 @@ jobs:
90
92
tar -czvf blog-${{ env.RELEASE_VERSION }}.tar.gz -C dist .
91
93
shasum -a 512 blog-${{ env.RELEASE_VERSION }}.tar.gz > blog-${{ env.RELEASE_VERSION }}.tar.gz.sha512
94
95
+ - name: Attest release provenance
96
+ uses: actions/attest-build-provenance@v2
97
+ with:
98
+ subject-path: '${{ github.workspace }}/blog-${{ env.RELEASE_VERSION }}.tar.gz'
99
+
100
- name: 🔖 Create Git Tag
101
run: |
102
git config user.name "radagastbot[bot]"
0 commit comments