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.
entitlements-app
1 parent 8901ab4 commit 0869642Copy full SHA for 0869642
.github/workflows/release.yml
@@ -11,6 +11,8 @@ on:
11
permissions:
12
contents: write
13
packages: write
14
+ id-token: write
15
+ attestations: write
16
17
jobs:
18
release:
@@ -39,6 +41,10 @@ jobs:
39
41
# builds the gem and saves the version to GITHUB_ENV
40
42
- name: build
43
run: echo "GEM_VERSION=$(gem build ${{ env.GEM_NAME }}.gemspec 2>&1 | grep Version | cut -d':' -f 2 | tr -d " \t\n\r")" >> $GITHUB_ENV
44
+
45
+ - uses: actions/attest-build-provenance@v1
46
+ with:
47
+ subject-path: "${{ env.GEM_NAME }}-${{ env.GEM_VERSION }}.gem"
48
49
- name: publish to GitHub packages
50
run: |
0 commit comments