Remove junk folder when packaging macOS app

This commit is contained in:
Edward Li 2021-12-25 05:38:46 +08:00 committed by scribam
parent d86305a7c3
commit 0bb6fed822
1 changed files with 3 additions and 1 deletions

View File

@ -146,7 +146,9 @@ jobs:
path: artifact/bin
- name: Package app (macos)
run: zip -rm artifact/bin/flycast.app.zip artifact/bin/Flycast.app
run: |
cd artifact/bin
zip -rm flycast.app.zip Flycast.app
if: matrix.config.name == 'apple-darwin'
- name: Package app (windows)