Skip to content

Commit e7a2da6

Browse files
committed
chore: update artifact handling in build workflow for Windows, Linux, and MacOS
1 parent 12915d1 commit e7a2da6

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,19 +176,29 @@ jobs:
176176
- name: List downloaded artifacts
177177
run: ls -R artifacts
178178

179-
- name: Zip Linux artifacts
179+
- name: Windows artifacts
180+
run: ls artifacts/windows-x64
181+
182+
- name: Linux artifacts
183+
run: ls artifacts/linux-x64
184+
185+
- name: MacOS artifacts
186+
run: ls artifacts/macos-arm64
187+
188+
- name: Zip and rename artifacts
180189
run: |
181190
cd artifacts/
182191
zip -r ./linux-x64.zip ./linux-x64
183192
zip -r ./windows-x64.zip ./windows-x64
184193
zip -r ./macos-arm64.zip ./macos-arm64
194+
mv windows_installer.exe ./windows-x64/windows-x64\ Inno\ installer.exe
185195
186196
- name: Create Release
187197
uses: softprops/action-gh-release@v1
188198
with:
189199
files: |
190-
artifacts/desktop_adb_file_browser.msix
191-
artifacts/windows-x64 Inno installer.exe
200+
artifacts/windows-x64/desktop_adb_file_browser.msix
201+
artifacts/windows-x64/windows-x64 Inno installer.exe
192202
artifacts/windows-x64.zip
193203
artifacts/linux-x64.zip
194204
artifacts/macos-arm64.zip

0 commit comments

Comments
 (0)