|
| 1 | +# provenace generation step is taken from: https://github.com/ko-build/ko/blob/main/.github/workflows/release.yml |
1 | 2 | name: Release
|
2 | 3 | permissions:
|
3 | 4 | contents: read # to fetch code (actions/checkout)
|
4 | 5 | jobs:
|
5 | 6 | release:
|
6 | 7 | if: github.repository_owner == 'jenkins-x'
|
7 | 8 | runs-on: ubuntu-latest
|
| 9 | + outputs: |
| 10 | + hashes: ${{ steps.generate-subject.outputs.hashes }} |
8 | 11 | steps:
|
9 | 12 | - name: Checkout
|
10 | 13 | uses: actions/checkout@v3
|
|
38 | 41 | COSIGN_PWD: ${{secrets.COSIGN_PWD}}
|
39 | 42 | COSIGN_PRIVATE_KEY: ${{secrets.COSIGN_PRIVATE_KEY}}
|
40 | 43 | name: upload-binaries
|
| 44 | + id: release-artifacts |
41 | 45 | uses: docker://ghcr.io/jenkins-x/jx-goreleaser-image:0.0.1@sha256:75dde8a5d24f9e7ec58c8d52beed30af3763ed65071610486eabb424abbe5150
|
42 | 46 | with:
|
43 | 47 | 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)" |
44 | 56 | - name: Set up QEMU
|
45 | 57 | uses: docker/setup-qemu-action@v2
|
46 | 58 | - name: Set up Docker Buildx
|
@@ -111,6 +123,16 @@ jobs:
|
111 | 123 | DOCKER_REGISTRY_ORG: jenkins-x
|
112 | 124 | REPO_NAME: ${{ github.event.repository.name }}
|
113 | 125 | 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 |
114 | 136 | release2:
|
115 | 137 | if: github.repository_owner == 'jenkins-x'
|
116 | 138 | runs-on: ubuntu-latest
|
|
0 commit comments