Skip to content

Commit 13e9a90

Browse files
author
Pat
authored
workflows: fix hash outputs (#7484)
Signed-off-by: Patrick Stephens <[email protected]>
1 parent fddaa7f commit 13e9a90

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/staging-release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -342,10 +342,10 @@ jobs:
342342
permissions:
343343
contents: read
344344
outputs:
345-
windows-exe32-hash: steps.windows.outputs.WIN_32_EXE_HASH
346-
windows-zip32-hash: steps.windows.outputs.WIN_32_ZIP_HASH
347-
windows-exe64-hash: steps.windows.outputs.WIN_64_EXE_HASH
348-
windows-zip64-hash: steps.windows.outputs.WIN_64_ZIP_HASH
345+
windows-exe32-hash: ${{ steps.windows.outputs.WIN_32_EXE_HASH }}
346+
windows-zip32-hash: ${{ steps.windows.outputs.WIN_32_ZIP_HASH }}
347+
windows-exe64-hash: ${{ steps.windows.outputs.WIN_64_EXE_HASH }}
348+
windows-zip64-hash: ${{ steps.windows.outputs.WIN_64_ZIP_HASH }}
349349
steps:
350350
- name: Checkout code
351351
uses: actions/checkout@v3

0 commit comments

Comments
 (0)