Skip to content

Commit 0fcde2e

Browse files
authored
Update publish.yml
now adds the install files to the Release... (hopefully)
1 parent ca2981d commit 0fcde2e

1 file changed

Lines changed: 24 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ jobs:
2424
run: npm run publish
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
- name: Upload Linux artifacts
28+
uses: softprops/action-gh-release@v2
29+
with:
30+
files: |
31+
out/make/*.deb
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
2735

2836
publish_for_mac:
2937
runs-on: macos-latest
@@ -38,6 +46,13 @@ jobs:
3846
run: npm run publish
3947
env:
4048
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
- name: Upload macOS artifact to release
50+
uses: softprops/action-gh-release@v2
51+
with:
52+
files: |
53+
out/make/*.dmg
54+
env:
55+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4156

4257
publish_for_win:
4358
runs-on: windows-latest
@@ -51,4 +66,12 @@ jobs:
5166
- name: publish
5267
run: npm run publish
5368
env:
54-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70+
- name: Upload Windows artifacts
71+
uses: softprops/action-gh-release@v2
72+
with:
73+
files: |
74+
dist/*.exe
75+
dist/*.msi
76+
env:
77+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)