File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -176,19 +176,29 @@ jobs:
176
176
- name : List downloaded artifacts
177
177
run : ls -R artifacts
178
178
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
180
189
run : |
181
190
cd artifacts/
182
191
zip -r ./linux-x64.zip ./linux-x64
183
192
zip -r ./windows-x64.zip ./windows-x64
184
193
zip -r ./macos-arm64.zip ./macos-arm64
194
+ mv windows_installer.exe ./windows-x64/windows-x64\ Inno\ installer.exe
185
195
186
196
- name : Create Release
187
197
uses : softprops/action-gh-release@v1
188
198
with :
189
199
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
192
202
artifacts/windows-x64.zip
193
203
artifacts/linux-x64.zip
194
204
artifacts/macos-arm64.zip
You can’t perform that action at this time.
0 commit comments