From 1908be7034789d3fd97eaa4c904a89b214f49ded Mon Sep 17 00:00:00 2001 From: Ian Stapleton Cordasco Date: Thu, 16 May 2024 08:40:03 -0500 Subject: [PATCH] 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. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a78e4ef..f437a785 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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"