Skip to content

Commit

Permalink
Fail CI when codesign doesn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriSizov committed Jan 25, 2025
1 parent 7bc9809 commit bc99026
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/sign-extension/macos/sign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ codesign --verify "${framework_path}"
echo "Archiving and notarizing the signed framework..."

ditto -ck "${framework_path}" "${archive_path}"
xcrun notarytool submit "${archive_path}" --apple-id ${apple_dev_id} --team-id ${apple_dev_team_id} --password ${apple_dev_password} --wait
xcrun notarytool submit "${archive_path}" --apple-id ${apple_dev_id} --team-id ${apple_dev_team_id} --password ${apple_dev_password} --wait || { exit 1; }

echo "Cleaning up..."

Expand Down
2 changes: 1 addition & 1 deletion .github/actions/sign-godot-project/macos/sign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ codesign --verify "${app_path}"
echo "Archiving and notarizing the signed app..."

ditto -ck --keepParent "${app_path}" "${archive_path}"
xcrun notarytool submit "${archive_path}" --apple-id ${apple_dev_id} --team-id ${apple_dev_team_id} --password ${apple_dev_password} --wait
xcrun notarytool submit "${archive_path}" --apple-id ${apple_dev_id} --team-id ${apple_dev_team_id} --password ${apple_dev_password} --wait || { exit 1; }

echo "Stapling the notarization ticket to the signed app..."

Expand Down

0 comments on commit bc99026

Please sign in to comment.