We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c75a92 commit d82457dCopy full SHA for d82457d
.github/workflows/release.yaml
@@ -96,7 +96,7 @@ jobs:
96
shell: bash
97
run: |
98
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then
99
- certutil -hashfile "${{ env.ASSET }}" SHA256 | findstr /v "hash" | findstr /v "CertUtil" > "${{ env.ASSET }}.sha256"
+ powershell -Command "(Get-FileHash -Algorithm SHA256 '${{ env.ASSET }}').Hash.ToLower()" > "${{ env.ASSET }}.sha256"
100
else
101
shasum -a 256 "${{ env.ASSET }}" | awk '{print $1}' > "${{ env.ASSET }}.sha256"
102
fi
0 commit comments