Skip to content

Commit 4b76a33

Browse files
authored
Merge pull request #37 from github/attest-build-provenance
Attest Build Provenance
2 parents a52c0a0 + 0869642 commit 4b76a33

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/release.yml

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ on:
1111
permissions:
1212
contents: write
1313
packages: write
14+
id-token: write
15+
attestations: write
1416

1517
jobs:
1618
release:
@@ -39,6 +41,10 @@ jobs:
3941
# builds the gem and saves the version to GITHUB_ENV
4042
- name: build
4143
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"
4248

4349
- name: publish to GitHub packages
4450
run: |

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
entitlements-app (0.3.2)
4+
entitlements-app (0.3.3)
55
concurrent-ruby (= 1.1.9)
66
faraday (~> 2.0)
77
net-ldap (~> 0.17)

lib/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Entitlements
44
module Version
5-
VERSION = "0.3.2"
5+
VERSION = "0.3.3"
66
end
77
end

0 commit comments

Comments
 (0)