Skip to content

Commit

Permalink
Remove junk folder when packaging macOS app
Browse files Browse the repository at this point in the history
  • Loading branch information
vkedwardli authored and scribam committed Dec 26, 2021
1 parent d86305a commit 0bb6fed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0bb6fed

Please sign in to comment.