diff --git a/.github/workflows/travis-packaging-macos.yaml b/.github/workflows/travis-packaging-macos.yaml index 2e142d7f46..eb6e2a9ca9 100644 --- a/.github/workflows/travis-packaging-macos.yaml +++ b/.github/workflows/travis-packaging-macos.yaml @@ -96,17 +96,15 @@ jobs: # Variables MACOS_DEV_ID: ${{ secrets.MACOS_DEV_ID }} MACOS_KEYCHAIN_PWD: ${{ secrets.MACOS_KEYCHAIN_PWD }} - IS_WITH_JDK: ${{ secrets.IS_WITH_JDK }} - WORKSPACE_PATH: ${{ github.workspace }} run: | # Unlock security unlock-keychain -p "$MACOS_KEYCHAIN_PWD" build.keychain unzip -q ${{ github.workspace }}/artifacts/${{ matrix.zipName }}.zip -d . && rm ${{ github.workspace }}/artifacts/*.zip # Sign everything inside app bash ${{ github.workspace }}/artifacts/mac-sign.sh - plutil -convert xml1 ${{ github.workspace }}/entitlements.plist && plutil -lint ${{ github.workspace }}/entitlements.plist - codesign --entitlements "$WORKSPACE_PATH/entitlements.plist" --timestamp --options=runtime --force -s "$MACOS_DEV_ID" -v ./Gama.app/Contents/MacOS/Gama - + plutil -convert xml1 ./artifacts/entitlements.plist && plutil -lint ./artifacts/entitlements.plist + codesign --entitlements "./artifacts/entitlements.plist" --timestamp --options=runtime --force -s "$MACOS_DEV_ID" -v ./Gama.app/Contents/MacOS/Gama + - name: Packaging signed Application w/o JDK shell: bash env: