Skip to content

Commit

Permalink
Be sure to setlocation on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorific committed Jun 20, 2024
1 parent af8e63a commit baa014f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ jobs:
- name: Generate SHA256 checksum on Windows
if: runner.os == 'Windows'
run: |
Get-ChildItem -Recurse build | Get-FileHash -Algorithm SHA256 | ForEach-Object { "$($_.Hash) $($_.Path)" } > checksums.txt
Set-Location -Path build
Get-ChildItem -Recurse | Get-FileHash -Algorithm SHA256 | ForEach-Object { "$($_.Hash) $($_.Path)" } > ../checksums.txt
shell: pwsh
- name: Archive build artifacts on Windows
if: runner.os == 'windows'
Expand Down

0 comments on commit baa014f

Please sign in to comment.