Skip to content

Commit d19e556

Browse files
committed
ci(cd-windows): use powershell for archive build
1 parent f056859 commit d19e556

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/cd-windows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: fyne package --release
5353

5454
- name: Create ZIP archive
55-
shell: bash
55+
shell: pwsh
5656
run: |
5757
ORIGINAL="${APP_NAME}.exe"
5858
TARGET="${APP_NAME}-${APP_VERSION}.exe"
@@ -61,7 +61,7 @@ jobs:
6161
6262
ZIP_NAME="${APP_NAME}-${APP_VERSION}-windows-${ARCH}.zip"
6363
64-
zip "$ZIP_NAME" "$TARGET"
64+
7z a "$ZIP_NAME" "$TARGET"
6565
6666
echo "ARCHIVE=$ZIP_NAME" >> $GITHUB_ENV
6767

0 commit comments

Comments
 (0)