Skip to content

Commit 4ccfef2

Browse files
authored
PG Fix macOS / Linux (#514)
- (ubuntu-22.04 fix until image is fixed for 24.04) - Notorization disabled
1 parent e58d1ea commit 4ccfef2

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717

1818
jobs:
1919
build-linux:
20-
runs-on: ubuntu-24.04
20+
runs-on: ubuntu-22.04
2121
strategy:
2222
matrix:
2323
cfg:

scripts/osx/ci_build_pg.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ package_app(){
7373
echo "Compressing PG app"
7474
# need to upload zip of just app to apple for notarizing
7575
zip --symlinks -r -q projectGenerator-$PLATFORM/projectGenerator-$PLATFORM.zip projectGenerator-$PLATFORM/projectGenerator.app
76-
xcrun notarytool --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
76+
xcrun notarytool --version
77+
xcrun notarytool history
78+
echo "SKIPPING NOTORIZATION --"
79+
# xcrun notarytool submit projectGenerator-$PLATFORM/projectGenerator-$PLATFORM.zip --primary-bundle-id "com.electron.projectgenerator" --apple-id "${GA_APPLE_USERNAME}" --team-id "${GA_TEAM_ID}" --password "${GA_APPLE_PASS}"
7780
mv projectGenerator-$PLATFORM/projectGenerator-$PLATFORM.zip ${PG_DIR}/../../../projectGenerator/projectGenerator-$PLATFORM.zip
7881
cd ${PG_DIR}/../../../projectGenerator
7982
echo "Final Directory contents: ${PG_DIR}/../../../projectGenerator"

0 commit comments

Comments
 (0)