Skip to content

Commit

Permalink
ci: fix sha on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhilt committed Oct 2, 2024
1 parent 5a356e5 commit cb30a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:

- name: Generate checksum (Windows)
if: matrix.runner == 'windows-latest'
run: Get-FileHash tripa-${{ matrix.target }}.exe decode-batch-${{ matrix.target }}.exe -Algorithm SHA512 | Out-File -FilePath SHA512SUMS-${{ matrix.target }}.txt
run: Get-FileHash -Path tripa-${{ matrix.target }}.exe,decode-batch-${{ matrix.target }}.exe -Algorithm SHA512 | Select-Object @{Name='FileName'; Expression={($_.Path -split '\\')[-1]}}, Hash | Out-File -FilePath SHA512SUMS-${{ matrix.target }}.txt

- name: Release
uses: softprops/action-gh-release@v2
Expand Down

0 comments on commit cb30a43

Please sign in to comment.