Skip to content

Commit d59e861

Browse files
committed
[ci] Fix typo
1 parent 6159c4d commit d59e861

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ jobs:
189189
190190
# Windows environments in github actions don't have the gnu coreutils installed,
191191
# which includes the shasum exe, so we just use powershell instead
192-
if [ "{{ matrix.os }}" == "windows-latest" ]; then
192+
if [ "${{ matrix.os }}" == "windows-latest" ]; then
193193
echo "(Get-FileHash \"${release_tar}\" -Algorithm SHA256).Hash | Out-File -Encoding ASCII -NoNewline \"${release_tar}.sha256\"" | pwsh -c -
194194
else
195195
echo -n "$(shasum -ba 256 "${release_tar}" | cut -d " " -f 1)" > "${release_tar}.sha256"

0 commit comments

Comments
 (0)