diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 5226b233..0ec7becc 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -59,4 +59,4 @@ jobs: release: nightly prerelease: false replace: false - files: ../openFrameworks/apps/projectGenerator/projectGenerator-osx.zip ../openFrameworks/apps/projectGenerator/projectGenerator-ios.zip + files: ../openFrameworks/apps/projectGenerator/projectGenerator-osx/projectGenerator-osx.zip ../openFrameworks/apps/projectGenerator/projectGenerator-ios/projectGenerator-ios.zip diff --git a/scripts/osx/buildPG.sh b/scripts/osx/buildPG.sh index 370652e3..66bc530d 100755 --- a/scripts/osx/buildPG.sh +++ b/scripts/osx/buildPG.sh @@ -35,11 +35,9 @@ package_app(){ electron-osx-sign projectGenerator-$PLATFORM/projectGenerator.app --platform=darwin --type=distribution --no-gatekeeper-assess --hardened-runtime --entitlements=scripts/osx/PG.entitlements --entitlements-inherit=scripts/osx/PG.entitlements echo "Compressing PG app" - zip --symlinks -r -q projectGenerator-$PLATFORM.zip projectGenerator-$PLATFORM - # need to upload zip of just app to apple for notarizing - zip --symlinks -r -q projectGenerator-$PLATFORM/projectGenerator.app.zip projectGenerator-$PLATFORM/projectGenerator.app - xcrun altool --notarize-app --primary-bundle-id "com.electron.projectgenerator" --username "${GA_APPLE_USERNAME}" -p "${GA_APPLE_PASS}" --asc-provider "${GA_NOTARIZE_PROVIDER}" --file projectGenerator-$PLATFORM/projectGenerator.app.zip + zip --symlinks -r -q projectGenerator-$PLATFORM/projectGenerator-$PLATFORM.zip projectGenerator-$PLATFORM/projectGenerator.app + xcrun altool --notarize-app --primary-bundle-id "com.electron.projectgenerator" --username "${GA_APPLE_USERNAME}" -p "${GA_APPLE_PASS}" --asc-provider "${GA_NOTARIZE_PROVIDER}" --file projectGenerator-$PLATFORM/projectGenerator-$PLATFORM.zip fi }