diff --git a/.github/workflows/travis-packaging-macos.yaml b/.github/workflows/travis-packaging-macos.yaml index 8a28358517..3a5f8a8f1c 100644 --- a/.github/workflows/travis-packaging-macos.yaml +++ b/.github/workflows/travis-packaging-macos.yaml @@ -102,8 +102,8 @@ jobs: 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 }}/artifacts/entitlements.plist && plutil -lint ${{ github.workspace }}/artifacts/entitlements.plist - codesign --entitlements "${{ github.workspace }}/artifacts/entitlements.plist" --timestamp --options=runtime --force -s "$MACOS_DEV_ID" -v ./Gama.app/Contents/MacOS/Gama + wget https://raw.githubusercontent.com/gama-platform/gama/2024-06/gama.product/extraresources/entitlements.plist && plutil -convert xml1 ./entitlements.plist && plutil -lint ./entitlements.plist + codesign --entitlements "./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