Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Commit 1749434

Browse files
committed
Fixing case statement
1 parent d7b1863 commit 1749434

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

env-from-branch/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ runs:
1010
run: |
1111
case $GITHUB_REF_NAME in
1212
13-
main | master
13+
main | master)
1414
echo "APP_ENV=prod" >> $GITHUB_ENV
1515
;;
1616
17-
"deploy/uat"
17+
"deploy/uat")
1818
echo "APP_ENV=uat" >> $GITHUB_ENV
1919
;;
2020

0 commit comments

Comments
 (0)