Skip to content

Commit

Permalink
Add semicolons to one-line switch case
Browse files Browse the repository at this point in the history
  • Loading branch information
ghidalgo3 committed Apr 16, 2024
1 parent f0ffcb1 commit 912f6ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
run:
case "${GITHUB_REF}" in
*tags*)
echo "tag=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
echo "tag=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT ;
echo "acr=pccomponents" >> $GITHUB_OUTPUT
;;
*)
echo "tag=latest" >> $GITHUB_OUTPUT
echo "tag=latest" >> $GITHUB_OUTPUT ;
echo "acr=pccomponentstest" >> $GITHUB_OUTPUT
;;
esac
Expand Down

0 comments on commit 912f6ba

Please sign in to comment.