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 4eabf47 commit b7add6dCopy full SHA for b7add6d
.github/workflows/release.yml
@@ -12,6 +12,8 @@ jobs:
12
permissions:
13
contents: write
14
runs-on: ubuntu-latest
15
+ outputs:
16
+ artifact-id: ${{ steps.upload-artifact.outputs.artifact-id }}
17
18
steps:
19
- name: checkout
@@ -35,6 +37,7 @@ jobs:
35
37
36
38
- name: upload artifact
39
uses: actions/upload-artifact@4.6.2
40
+ id: upload-artifact
41
with:
42
path: dist/
43
@@ -46,10 +49,12 @@ jobs:
46
49
contents: read
47
50
uses: github/salsa/.github/workflows/sign-artifact.yml@main
48
51
52
+ artifact-ids: ${{ needs.release.outputs.artifact-id }}
53
artifact-path: "."
54
55
verify:
- needs: sign
56
+ needs: [release, sign]
57
uses: github/salsa/.github/workflows/verify.yml@main
58
59
60
0 commit comments