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 6159c4d commit d59e861Copy full SHA for d59e861
.github/workflows/ci.yaml
@@ -189,7 +189,7 @@ jobs:
189
190
# Windows environments in github actions don't have the gnu coreutils installed,
191
# which includes the shasum exe, so we just use powershell instead
192
- if [ "{{ matrix.os }}" == "windows-latest" ]; then
+ if [ "${{ matrix.os }}" == "windows-latest" ]; then
193
echo "(Get-FileHash \"${release_tar}\" -Algorithm SHA256).Hash | Out-File -Encoding ASCII -NoNewline \"${release_tar}.sha256\"" | pwsh -c -
194
else
195
echo -n "$(shasum -ba 256 "${release_tar}" | cut -d " " -f 1)" > "${release_tar}.sha256"
0 commit comments