Skip to content

Commit ad61ff3

Browse files
committed
fix: update artifact paths to include platform-specific installer files in build workflow
1 parent cc29e04 commit ad61ff3

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,14 @@ jobs:
6767
with:
6868
name: artifacts-${{ matrix.target }}
6969
path: |
70-
src-tauri/target/${{ matrix.target }}/release/bundle/**/*
71-
src-tauri/target/release/bundle/**/*
70+
src-tauri/target/${{ matrix.target }}/release/bundle/**/*.msi
71+
src-tauri/target/${{ matrix.target }}/release/bundle/**/*.dmg
72+
src-tauri/target/${{ matrix.target }}/release/bundle/**/*.deb
73+
src-tauri/target/${{ matrix.target }}/release/bundle/**/*.AppImage
74+
src-tauri/target/release/bundle/**/*.msi
75+
src-tauri/target/release/bundle/**/*.dmg
76+
src-tauri/target/release/bundle/**/*.deb
77+
src-tauri/target/release/bundle/**/*.AppImage
7278
if-no-files-found: error
7379

7480
release:
@@ -97,7 +103,7 @@ jobs:
97103
- Cross-platform builds for Linux x86_64, Windows x86_64, Mac Intel, Mac ARM.
98104
99105
## Downloads
100-
Download the appropriate installer for your platform from the assets below.
106+
Download the installer files (.msi for Windows, .dmg for Mac, .deb/.AppImage for Linux) for your platform from the assets below.
101107
draft: true
102108
files: ./artifacts/**/*
103109
env:

0 commit comments

Comments
 (0)