Skip to content

Commit

Permalink
[ci] Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Oct 7, 2019
1 parent 6159c4d commit d59e861
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
# Windows environments in github actions don't have the gnu coreutils installed,
# which includes the shasum exe, so we just use powershell instead
if [ "{{ matrix.os }}" == "windows-latest" ]; then
if [ "${{ matrix.os }}" == "windows-latest" ]; then
echo "(Get-FileHash \"${release_tar}\" -Algorithm SHA256).Hash | Out-File -Encoding ASCII -NoNewline \"${release_tar}.sha256\"" | pwsh -c -
else
echo -n "$(shasum -ba 256 "${release_tar}" | cut -d " " -f 1)" > "${release_tar}.sha256"
Expand Down

0 comments on commit d59e861

Please sign in to comment.