1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-29 04:17:41 +02:00

removing the master branch CI code execution

This commit is contained in:
Joseph Flinn 2021-10-21 08:15:51 -07:00
parent 9635b1acb7
commit ecfb80fd6d

View File

@ -15,9 +15,9 @@ jobs:
steps:
- name: Branch check
run: |
if [[ "$GITHUB_REF" != "refs/heads/release" ]] || [[ "$GITHUB_REF" != "refs/heads/master" ]]; then
if [[ "$GITHUB_REF" != "refs/heads/release" ]]; then
echo "==================================="
echo "[!] Can only release from the 'release' or 'master' branches"
echo "[!] Can only release from the 'release' branches"
echo "==================================="
exit 1
fi