We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c936b17 commit 097b2caCopy full SHA for 097b2ca
.github/workflows/release.yaml
@@ -44,6 +44,11 @@ jobs:
44
- name: Build (release)
45
run: cargo build --locked --release --all-targets
46
47
+ - name: Install zip (Windows)
48
+ if: matrix.os == 'windows-latest'
49
+ shell: pwsh # Use PowerShell because choco is only available in PowerShell PATH
50
+ run: choco install zip -y # Windows runners don't have zip by default, install via Chocolatey
51
+
52
- name: Package binary
53
shell: bash
54
run: |
0 commit comments