Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
tools: use macOS keychain to notarize the releases
  • Loading branch information
UlisesGascon committed Nov 13, 2023
commit 26c3f3c616ab72265ce8223454929e1c449173b1
7 changes: 1 addition & 6 deletions tools/osx-notarize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,10 @@ then
exit 1
fi

# Submit the package for notarization
# TODO(@ulisesGascon): refactor to use --keychain-profile
# when https://github.com/nodejs/build/issues/3385#issuecomment-1729281269 is ready
echo "Submitting node-$pkgid.pkg for notarization..."

xcrun notarytool submit \
--apple-id "$NOTARIZATION_ID" \
--password "$NOTARIZATION_PASSWORD" \
--team-id "$NOTARIZATION_TEAM_ID" \
--keychain-profile "NODE_RELEASE_PROFILE" \
Comment thread
UlisesGascon marked this conversation as resolved.
--wait \
"node-$pkgid.pkg"

Expand Down