You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:"${APPLE_ID:?Set APPLE_ID or NOTARYTOOL_PROFILE}"
41
41
:"${APPLE_APP_SPECIFIC_PASSWORD:?Set APPLE_APP_SPECIFIC_PASSWORD or NOTARYTOOL_PROFILE}"
42
42
:"${APPLE_TEAM_ID:?Set APPLE_TEAM_ID or NOTARYTOOL_PROFILE}"
@@ -47,8 +47,15 @@ elif [[ -z "${NOTARYTOOL_PROFILE:-}" ]]; then
47
47
--password "${APPLE_APP_SPECIFIC_PASSWORD}"
48
48
49
49
submit_with_keychain_profile "${DMG_PATH}"
50
+
elif [[ -n"${NOTARYTOOL_PROFILE:-}" ]];then
51
+
echo"Keychain profile '${PROFILE_NAME}' was not found.">&2
52
+
echo"NOTARYTOOL_PROFILE is only a local keychain profile name, not a portable GitHub Actions secret.">&2
53
+
echo"Configure APP_STORE_CONNECT_API_KEY_BASE64 with APP_STORE_CONNECT_KEY_ID and APP_STORE_CONNECT_ISSUER_ID, or APPLE_ID with APPLE_APP_SPECIFIC_PASSWORD and APPLE_TEAM_ID.">&2
54
+
exit 1
50
55
else
51
-
submit_with_keychain_profile "${DMG_PATH}"
56
+
echo"Missing notarization credentials.">&2
57
+
echo"Configure APP_STORE_CONNECT_API_KEY_BASE64 with APP_STORE_CONNECT_KEY_ID and APP_STORE_CONNECT_ISSUER_ID, or APPLE_ID with APPLE_APP_SPECIFIC_PASSWORD and APPLE_TEAM_ID.">&2
echo"Keychain profile '${PROFILE_NAME}' was not found.">&2
47
+
echo"NOTARYTOOL_PROFILE is only a local keychain profile name, not a portable GitHub Actions secret.">&2
48
+
echo"Configure APP_STORE_CONNECT_API_KEY_BASE64 with APP_STORE_CONNECT_KEY_ID and APP_STORE_CONNECT_ISSUER_ID, or APPLE_ID with APPLE_APP_SPECIFIC_PASSWORD and APPLE_TEAM_ID.">&2
echo"Configure APP_STORE_CONNECT_API_KEY_BASE64 with APP_STORE_CONNECT_KEY_ID and APP_STORE_CONNECT_ISSUER_ID, or APPLE_ID with APPLE_APP_SPECIFIC_PASSWORD and APPLE_TEAM_ID.">&2
0 commit comments