Skip to content

Commit

Permalink
Fix signing tool
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkbatya committed Jun 10, 2024
1 parent de87582 commit bf795c8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ if [ -n "${MAC_OS_SIGNING_KEY_ID:-""}" ]; then
xattr -cr "$PROJECT.app";
codesign --force --options=runtime -s "$MAC_OS_SIGNING_KEY_ID" --deep -v "$PROJECT.app";
/usr/bin/ditto -c -k --keepParent "$PROJECT.app" "$PROJECT.zip";
xcrun altool \
--notarize-app \
--primary-bundle-id "$MAC_OS_SIGNING_BUNDLE_ID" \
--username "$MAC_OS_SIGNING_USERNAME" \
xcrun notarytool \
submit \
--apple-id "$MAC_OS_SIGNING_USERNAME" \
--team-id "$MAC_OS_SIGNING_TEAM_ID" \
--password "$MAC_OS_SIGNING_PASSWORD" \
--asc-provider "$MAC_OS_SIGNING_ASC_PROVIDER" \
--file "$PROJECT.zip";
--wait \
"$PROJECT.zip";
fi

# build DMG
Expand Down

0 comments on commit bf795c8

Please sign in to comment.