Skip to content

Commit 7ab3da2

Browse files
committed
use 7z rather than zip
1 parent 94060b9 commit 7ab3da2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ jobs:
101101
run: |
102102
cd target/signed
103103
tar -czf ${{ github.ref_name }}-${{ matrix.target }}.tar.gz internal-test.exe
104-
zip -r ${{ github.ref_name }}-${{ matrix.target }}.zip internal-test.exe
104+
# Windows has 7z, not zip.
105+
7z a ${{ github.ref_name }}-${{ matrix.target }}.zip internal-test.exe
105106
gh release upload ${{ github.ref }} \
106107
${{ github.ref_name }}-${{ matrix.target }}.tar.gz \
107108
${{ github.ref_name }}-${{ matrix.target }}.zip

0 commit comments

Comments
 (0)