Skip to content

Commit

Permalink
[GHA] Clean mac zip after being extracted
Browse files Browse the repository at this point in the history
  • Loading branch information
RoiArthurB committed Oct 5, 2021
1 parent 0ff7ec5 commit 407c8ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-travis.yml
Expand Up @@ -126,7 +126,7 @@ jobs:
run: |
# Unlock
security unlock-keychain -p "$MACOS_KEYCHAIN_PWD" build.keychain
unzip -q ${{ github.workspace }}/artifacts/Gama1.7-macosx.cocoa.x86_64.zip -d .
unzip -q ${{ github.workspace }}/artifacts/Gama1.7-macosx.cocoa.x86_64.zip -d . && rm ${{ github.workspace }}/artifacts/Gama1.7-macosx.cocoa.x86_64.zip
# Sign everything inside app
bash ${{ github.workspace }}/artifacts/mac-sign.sh
# Make DMG - Based on : https://developer.apple.com/forums/thread/128166
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
run: |
# Unlock
security unlock-keychain -p "$MACOS_KEYCHAIN_PWD" build.keychain
unzip -q ${{ github.workspace }}/artifacts/Gama1.7-macosx.cocoa.x86_64_withJDK.zip -d .
unzip -q ${{ github.workspace }}/artifacts/Gama1.7-macosx.cocoa.x86_64_withJDK.zip -d . && rm ${{ github.workspace }}/artifacts/Gama1.7-macosx.cocoa.x86_64_withJDK.zip
# Sign everything inside app
bash ${{ github.workspace }}/artifacts/mac-sign.sh
# Make DMG - Based on : https://developer.apple.com/forums/thread/128166
Expand Down

0 comments on commit 407c8ae

Please sign in to comment.