diff options
-rw-r--r-- | .github/calcrom/webhook.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/calcrom/webhook.sh b/.github/calcrom/webhook.sh index fd12b64f..8ebb0e20 100644 --- a/.github/calcrom/webhook.sh +++ b/.github/calcrom/webhook.sh @@ -1,7 +1,7 @@ #!/bin/bash -ex # Only run this script if it's the master branch build. -if [[ "$GITHUB_REF" != "refs/head/master" || "$GITHUB_EVENT_NAME" != "push" ]]; then +if [[ "$GITHUB_REF" != "refs/heads/master" || "$GITHUB_EVENT_NAME" != "push" ]]; then exit 0 fi |