We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e337ef7 commit 6af0f7cCopy full SHA for 6af0f7c
.github/workflows/build.yml
@@ -178,15 +178,18 @@ jobs:
178
179
- name: Zip Linux artifacts
180
run: |
181
- cd artifacts/linux-x64
182
- zip -r ../linux-x64.zip .
+ cd artifacts/
+ zip -r ./linux-x64.zip ./linux-x64
183
+ zip -r ./windows-x64.zip ./windows-x64
184
+ zip -r ./macos-arm64.zip ./macos-arm64
185
186
- name: Create Release
187
uses: softprops/action-gh-release@v1
188
with:
189
files: |
190
artifacts/windows-x64/desktop_adb_file_browser.msix
- artifacts/windows-x64/windows_installer.exe
191
+ artifacts/windows-x64 Inno installer.exe
192
+ artifacts/windows-x64.zip
193
artifacts/linux-x64.zip
194
artifacts/macos-x64/result.zip
- fail_on_unmatched_files: false
195
+ fail_on_unmatched_files: true
0 commit comments