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.
1 parent ae84302 commit 0a910e0Copy full SHA for 0a910e0
.github/workflows/release.yml
@@ -33,6 +33,7 @@ jobs:
33
retention-days: 1
34
35
release:
36
+ name: release
37
runs-on: ubuntu-latest
38
needs:
39
prepare
@@ -80,4 +81,21 @@ jobs:
80
81
cp .release/* .
82
yarn
83
yarn release --repositoryUrl https://x-access-token:[email protected]/$GITHUB_REPOSITORY.git
84
+
85
+ provenance:
86
+ name: Generate provenance
87
+ runs-on: ubuntu-20.04
88
+ needs:
89
+ release
90
+ if: startsWith(github.ref, 'refs/tags/')
91
92
+ steps:
93
+ - name: Generate provenance for release
94
+ uses: philips-labs/[email protected]
95
+ with:
96
+ artifact_path: release-assets
97
+ output_path: 'build.provenance'
98
+ tag_name: "${{ github.ref_name }}"
99
+ env:
100
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
101
0 commit comments