Skip to content

Commit

Permalink
increase log verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
moosq committed Oct 24, 2023
1 parent 57bb97c commit 51ed6c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
if($env:GITHUB_REF -match $pattern) {
Write-Host "try to download zip archive for version ntt $($matches[1])"
hub.exe release download $($matches[1]) -i ntt_Windows_x86_64.zip
Expand-Archive ntt_Windows_x86_64.zip
Expand-Archive -v ntt_Windows_x86_64.zip
} else {
Write-Error "error: provided reference does not contain a tag: $env:GITHUB_REF"
}
Expand All @@ -58,6 +58,7 @@ jobs:
shell: bash
run: |
mkdir -p build
echo "executing: go-msi make --msi $PWD/ntt.msi --out $PWD/build --version ${GITHUB_REF#refs/tags/}"
go-msi make --msi "$PWD/ntt.msi" --out "$PWD/build" --version "${GITHUB_REF#refs/tags/}"
printf "::set-output name=msi::%s\n" *.msi
- name: Upload MSI
Expand Down

0 comments on commit 51ed6c2

Please sign in to comment.