mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
Fixing safari ref logic (#1299)
This commit is contained in:
parent
243afc9da0
commit
bd2ed43498
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@ -55,9 +55,9 @@ jobs:
|
||||
run: |
|
||||
SAFARI_REF=master
|
||||
|
||||
if [ "$GITHUB_REF" = "hotfix" ]; then
|
||||
if [[ "$GITHUB_REF" == "refs/heads/hotfix" ]]; then
|
||||
SAFARI_REF=hotfix
|
||||
elif [ "$GITHUB_REF" = "rc" ]; then
|
||||
elif [[ "$GITHUB_REF" == "refs/heads/rc" ]]; then
|
||||
SAFARI_REF=rc
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user