1
0
mirror of https://github.com/bitwarden/desktop synced 2025-12-26 21:23:17 +00:00

Fixing safari ref logic (#1299)

(cherry picked from commit bd2ed43498)
This commit is contained in:
Joseph Flinn
2022-02-08 07:41:58 -08:00
committed by Joseph Flinn
parent 25b00a1500
commit 89b167a9a1

View File

@@ -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