diff options
author | red031000 <rubenru09@aol.com> | 2020-12-23 21:09:38 +0000 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-12-23 21:09:38 +0000 |
commit | 402e915ff5045ba1983973b1dd3a323c2dfcc567 (patch) | |
tree | 4c54151b7129e6942441d15a0c6dcfa8b9746e0f | |
parent | a13ce0a41c77dfc31bbbf5478d6443b73c1387a5 (diff) |
fix reference
-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 |