Skip to content

Commit

Permalink
migrate from altool to notarytool
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberFlameGO authored Jul 27, 2023
1 parent 354cbcb commit 3198a5f
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -902,16 +902,14 @@
<!-- https://developer.apple.com/account/ -->

<exec executable="/usr/bin/xcrun" dir="macos" failonerror="true">
<arg value="altool" />
<arg value="--notarize-app" />
<arg value="notarytool" />
<arg value="submit" />

<!-- spew a bunch of useless garbage that has nothing to do with success/failure -->
<!-- <arg value="- -verbose" /> -->

<arg value="--primary-bundle-id" />
<arg value="org.processing.app" />

<arg value="--username" />
<arg value="--apple-id" />
<arg value="${env.PROCESSING_APPLE_ID}" />

<arg value="--password" />
Expand All @@ -920,14 +918,13 @@
<arg value="--team-id" />
<arg value="${env.PROCESSING_TEAM_ID}" />

<arg value="--file" />
<arg value="${dist.filename}" />
</exec>

<echo>
Check on notarization status with:

xcrun altool -u $PROCESSING_APPLE_ID -p $PROCESSING_APP_PASSWORD --notarization-info [the RequestUUID above]
xcrun notarytool info --apple-id $PROCESSING_APPLE_ID --password $PROCESSING_APP_PASSWORD [the RequestUUID above]
</echo>
</target>

Expand Down

0 comments on commit 3198a5f

Please sign in to comment.