Skip to content

Commit 1908be7

Browse files
committedMay 16, 2024
Fix release workflow
We need to explicitly name the variable we're using when writing to GITHUB_OUTPUT so we can use that in later steps.
1 parent 6d7ffea commit 1908be7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: "Generate hashes"
3838
id: hash
3939
run: |
40-
cd dist && echo "$(sha256sum * | base64 -w0)" >> $GITHUB_OUTPUT
40+
cd dist && echo "hashes=$(sha256sum * | base64 -w0)" >> $GITHUB_OUTPUT
4141
4242
- name: "Upload dists"
4343
uses: "actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808"

0 commit comments

Comments
 (0)
Failed to load comments.