Skip to content

Commit b48e176

Browse files
committed
fix: add step to upload updater artifacts
1 parent 5906a7f commit b48e176

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
run: pnpm install
5252

5353
- name: Build the app
54+
id: build-app
5455
uses: tauri-apps/tauri-action@v0
5556
env:
5657
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -65,4 +66,11 @@ jobs:
6566
includeUpdaterJson: true
6667
updaterJsonPreferNsis: true
6768
args: ${{ matrix.args }}
68-
includeRelease: true
69+
70+
- name: Upload updater artifacts
71+
uses: actions/upload-artifact@v3
72+
with:
73+
name: updater-${{ matrix.platform }}
74+
path: |
75+
src-tauri/target/**/release/bundle/*/updater.json
76+
src-tauri/target/**/release/bundle/*/signature

0 commit comments

Comments
 (0)