Skip to content

Commit 07b4ce1

Browse files
committed
feat: attempt to generate provenance using slsa generator
1 parent 364be76 commit 07b4ce1

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/jenkins-x-release.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
# provenace generation step is taken from: https://github.com/ko-build/ko/blob/main/.github/workflows/release.yml
12
name: Release
23
permissions:
34
contents: read # to fetch code (actions/checkout)
45
jobs:
56
release:
67
if: github.repository_owner == 'jenkins-x'
78
runs-on: ubuntu-latest
9+
outputs:
10+
hashes: ${{ steps.generate-subject.outputs.hashes }}
811
steps:
912
- name: Checkout
1013
uses: actions/checkout@v3
@@ -38,9 +41,18 @@ jobs:
3841
COSIGN_PWD: ${{secrets.COSIGN_PWD}}
3942
COSIGN_PRIVATE_KEY: ${{secrets.COSIGN_PRIVATE_KEY}}
4043
name: upload-binaries
44+
id: release-artifacts
4145
uses: docker://ghcr.io/jenkins-x/jx-goreleaser-image:0.0.1@sha256:75dde8a5d24f9e7ec58c8d52beed30af3763ed65071610486eabb424abbe5150
4246
with:
4347
entrypoint: .github/workflows/jenkins-x/upload-binaries.sh
48+
- name: Generate subject
49+
id: generate-subject
50+
env:
51+
ARTIFACTS: "${{ steps.release-artifacts.outputs.artifacts }}"
52+
run: |
53+
set -euo pipefail
54+
checksum_file=$(echo "$ARTIFACTS" | jq -r '.[] | select (.type=="Checksum") | .path')
55+
echo "::set-output name=hashes::$(cat $checksum_file | base64 -w0)"
4456
- name: Set up QEMU
4557
uses: docker/setup-qemu-action@v2
4658
- name: Set up Docker Buildx
@@ -111,6 +123,16 @@ jobs:
111123
DOCKER_REGISTRY_ORG: jenkins-x
112124
REPO_NAME: ${{ github.event.repository.name }}
113125
VERSION: ${{ steps.prep.outputs.version }}
126+
provenance:
127+
needs: release
128+
permissions:
129+
actions: read # To read the workflow path.
130+
id-token: write # To sign the provenance.
131+
contents: write # To add assets to a release.
132+
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected]
133+
with:
134+
base64-subjects: "${{ needs.release.outputs.hashes }}"
135+
upload-assets: true
114136
release2:
115137
if: github.repository_owner == 'jenkins-x'
116138
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)