We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf56ea commit e1f620cCopy full SHA for e1f620c
1 file changed
.github/workflows/release.yml
@@ -47,10 +47,11 @@ jobs:
47
id: package_windows
48
shell: pwsh
49
run: |
50
- Compress-Archive -Path target\release\tundra-cli.exe `
51
- -DestinationPath target\release\tundra-cli-${{ github.event.release.tag_name }}-windows-x86_64.zip
52
- Add-Content -Path $env:GITHUB_OUTPUT `
53
- -Value "path=$(Resolve-Path target\release\tundra-cli-${{ github.event.release.tag_name }}-windows-x86_64.zip)"
+ $zipPath = "target/release/tundra-cli-${{ github.event.release.tag_name }}-windows-x86_64.zip"
+ Compress-Archive `
+ -Path "target/release/tundra-cli.exe" `
+ -DestinationPath $zipPath -Force
54
+ "path=$zipPath" >> $env:GITHUB_OUTPUT
55
56
- name: Upload asset (Windows)
57
if: runner.os == 'Windows'
0 commit comments