We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1e60c7 commit c03e97cCopy full SHA for c03e97c
.github/workflows/main.yml
@@ -10,7 +10,7 @@ on:
10
concurrency:
11
group: build-${{ github.ref }}
12
cancel-in-progress: true
13
-
+
14
jobs:
15
builder_matrix:
16
strategy:
@@ -46,13 +46,14 @@ jobs:
46
name: ${{ matrix.os }}-${{ matrix.arch }}
47
path: ./build/GUI
48
49
+ - name: Compress GUI contents
50
+ run: |
51
+ Compress-Archive -Path ./Build/GUI/* -DestinationPath gui_contents.zip
52
53
- name: Upload assets to GitHub Release
54
if: github.event_name == 'release' && github.event.action == 'published'
55
uses: softprops/action-gh-release@v1
56
with:
- files: |
- dist/*.exe
- dist/*.dmg
- dist/*.AppImage
57
+ files: gui_contents.zip
58
env:
59
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments