Skip to content

Commit 69bd32a

Browse files
committed
ci: Normalize Windows sha256sum output for actions/attest
1 parent a2e75c6 commit 69bd32a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/sdk-release/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ runs:
235235
id: hash-windows
236236
run: |
237237
CURL_SUFFIX="${{ steps.curl-suffix-windows.outputs.suffix }}"
238-
echo "hashes-windows=$(sha256sum windows-msvc-x64-static.zip windows-msvc-x64-dynamic.zip windows-msvc-x64-static-debug.zip windows-msvc-x64-dynamic-debug.zip windows-msvc-x64-static-curl${CURL_SUFFIX}.zip windows-msvc-x64-dynamic-curl${CURL_SUFFIX}.zip windows-msvc-x64-static-debug-curl${CURL_SUFFIX}.zip windows-msvc-x64-dynamic-debug-curl${CURL_SUFFIX}.zip | base64 -w0)" >> "$GITHUB_OUTPUT"
238+
echo "hashes-windows=$(sha256sum windows-msvc-x64-static.zip windows-msvc-x64-dynamic.zip windows-msvc-x64-static-debug.zip windows-msvc-x64-dynamic-debug.zip windows-msvc-x64-static-curl${CURL_SUFFIX}.zip windows-msvc-x64-dynamic-curl${CURL_SUFFIX}.zip windows-msvc-x64-static-debug-curl${CURL_SUFFIX}.zip windows-msvc-x64-dynamic-debug-curl${CURL_SUFFIX}.zip | sed 's/ \*/ /' | base64 -w0)" >> "$GITHUB_OUTPUT"
239239
240240
- name: Upload Windows Build Artifacts
241241
if: runner.os == 'Windows'

0 commit comments

Comments
 (0)