From 5881b611cf5c6064cdc308bba632c059409fc8a2 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Sat, 16 Sep 2023 10:44:41 -0500 Subject: [PATCH] ci: Only code sign on master --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 69306e1c..be822f88 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,7 +77,8 @@ jobs: codesign: name: Apple Signing runs-on: macos-latest - if: github.event_name != 'pull_request' + # Ignore pull requests & non-master branches + if: github.ref == 'refs/heads/master' needs: [build-osx] strategy: matrix: