Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
We need to explicitly name the variable we're using when writing to
GITHUB_OUTPUT so we can use that in later steps.
  • Loading branch information
sigmavirus24 committed May 16, 2024
1 parent 6d7ffea commit 1908be7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: "Generate hashes"
id: hash
run: |
cd dist && echo "$(sha256sum * | base64 -w0)" >> $GITHUB_OUTPUT
cd dist && echo "hashes=$(sha256sum * | base64 -w0)" >> $GITHUB_OUTPUT
- name: "Upload dists"
uses: "actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808"
Expand Down

0 comments on commit 1908be7

Please sign in to comment.