Skip to content

Commit c03e97c

Browse files
authored
Update main.yml
1 parent c1e60c7 commit c03e97c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/main.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
concurrency:
1111
group: build-${{ github.ref }}
1212
cancel-in-progress: true
13-
13+
1414
jobs:
1515
builder_matrix:
1616
strategy:
@@ -46,13 +46,14 @@ jobs:
4646
name: ${{ matrix.os }}-${{ matrix.arch }}
4747
path: ./build/GUI
4848

49+
- name: Compress GUI contents
50+
run: |
51+
Compress-Archive -Path ./Build/GUI/* -DestinationPath gui_contents.zip
52+
4953
- name: Upload assets to GitHub Release
5054
if: github.event_name == 'release' && github.event.action == 'published'
5155
uses: softprops/action-gh-release@v1
5256
with:
53-
files: |
54-
dist/*.exe
55-
dist/*.dmg
56-
dist/*.AppImage
57+
files: gui_contents.zip
5758
env:
5859
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)