Skip to content

Commit

Permalink
chore(ci): Add provenance file (philips-labs#1371)
Browse files Browse the repository at this point in the history
Add provenance file for releases.

SLSA level 1

Signed-off-by: Nathaniel McAuliffe <[email protected]>
  • Loading branch information
JeroenKnoops authored and mcaulifn committed Nov 9, 2021
1 parent b7f0711 commit a8e050c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
retention-days: 1

release:
name: release
runs-on: ubuntu-latest
needs:
prepare
Expand Down Expand Up @@ -80,4 +81,21 @@ jobs:
cp .release/* .
yarn
yarn release --repositoryUrl https://x-access-token:[email protected]/$GITHUB_REPOSITORY.git
provenance:
name: Generate provenance
runs-on: ubuntu-20.04
needs:
release
if: startsWith(github.ref, 'refs/tags/')

steps:
- name: Generate provenance for release
uses: philips-labs/[email protected]
with:
artifact_path: release-assets
output_path: 'build.provenance'
tag_name: "${{ github.ref_name }}"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit a8e050c

Please sign in to comment.