Skip to content

Commit

Permalink
Notarize all macOS builds except PRs
Browse files Browse the repository at this point in the history
and not just nightly builds
  • Loading branch information
Jojo-Schmitz committed Feb 3, 2025
1 parent 63473bb commit 832d2be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
BUILD_NUMBER=$(cat ./build.artifacts/env/build_number.env)
DO_NOTARIZE='false'
if [ "$BUILD_MODE" != "devel" ]; then
if [ "${{ github.event_name }}" != "pull_request" ]; then
DO_NOTARIZE='true'
if [ -z "${{ secrets.APPLE_USERNAME }}" ]; then
echo "::warning::APPLE_USERNAME is empty; notarization disabled"
Expand Down

0 comments on commit 832d2be

Please sign in to comment.