Skip to content

Commit

Permalink
Fixing case statement
Browse files Browse the repository at this point in the history
  • Loading branch information
weotch committed Sep 16, 2022
1 parent d7b1863 commit 1749434
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions env-from-branch/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ runs:
run: |
case $GITHUB_REF_NAME in
main | master
main | master)
echo "APP_ENV=prod" >> $GITHUB_ENV
;;
"deploy/uat"
"deploy/uat")
echo "APP_ENV=uat" >> $GITHUB_ENV
;;
Expand Down

0 comments on commit 1749434

Please sign in to comment.