We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f056859 commit d19e556Copy full SHA for d19e556
1 file changed
.github/workflows/cd-windows.yaml
@@ -52,7 +52,7 @@ jobs:
52
run: fyne package --release
53
54
- name: Create ZIP archive
55
- shell: bash
+ shell: pwsh
56
run: |
57
ORIGINAL="${APP_NAME}.exe"
58
TARGET="${APP_NAME}-${APP_VERSION}.exe"
@@ -61,7 +61,7 @@ jobs:
61
62
ZIP_NAME="${APP_NAME}-${APP_VERSION}-windows-${ARCH}.zip"
63
64
- zip "$ZIP_NAME" "$TARGET"
+ 7z a "$ZIP_NAME" "$TARGET"
65
66
echo "ARCHIVE=$ZIP_NAME" >> $GITHUB_ENV
67
0 commit comments