File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ dmg_filename="$(basename -- $dmg_file)"
7
7
dir=" $( dirname " $dmg_file " ) "
8
8
9
9
cd $dir
10
- xcrun notarytool submit ./${dmg_filename} --keychain-profile $notarize_profile --wait
10
+ submission_id=` xcrun notarytool submit ./${dmg_filename} --keychain-profile $notarize_profile --wait --no-progress -f json | jq -r .id`
11
+ echo $submission_id
12
+ xcrun notarytool log --keychain-profile $notarize_profile $submission_id
11
13
echo " Staple and generate checksums for ${dmg_filename} "
12
14
xcrun stapler staple $dmg_filename
13
15
if [ $? -eq 0 ]; then
Original file line number Diff line number Diff line change 52
52
ls -la ${dir} /${destination_folder_name} /SpringToolSuite4.app/
53
53
codesign --verbose --deep --force --timestamp --entitlements " ${entitlements} " --options=runtime --keychain " ${KEYCHAIN} " -s " ${MACOS_CERTIFICATE_ID} " ${dir} /${destination_folder_name} /SpringToolSuite4.app
54
54
55
+ # Verify codesign
56
+ codesign --verify --deep --verbose ${dir} /${destination_folder_name} /SpringToolSuite4.app
57
+
55
58
cd ${dir} /${destination_folder_name}
56
59
echo " Generating dmg-config.json..."
57
60
echo ' {' >> dmg-config.json
You can’t perform that action at this time.
0 commit comments