We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f25a5ee commit 753b790Copy full SHA for 753b790
1 file changed
.github/workflows/pack-app.yml
@@ -36,11 +36,16 @@ jobs:
36
run: uv sync --all-groups
37
- name: Build app bundle
38
run: uv run python scripts/pack_app.py
39
- - name: Create zip archive
40
- shell: bash
+ - name: Create zip archive (Unix)
+ if: runner.os != 'Windows'
41
run: |
42
cd dist
43
zip -r ../Tuttle-${{ github.ref_name }}-${{ matrix.platform }}.zip .
44
+ - name: Create zip archive (Windows)
45
+ if: runner.os == 'Windows'
46
+ shell: pwsh
47
+ run: |
48
+ Compress-Archive -Path dist\* -DestinationPath Tuttle-${{ github.ref_name }}-${{ matrix.platform }}.zip
49
- uses: actions/upload-artifact@v4
50
with:
51
name: Tuttle-${{ github.ref_name }}-${{ matrix.platform }}
0 commit comments