From 912f6ba6022073d06624dbaf0a6e2829f54ec9e0 Mon Sep 17 00:00:00 2001 From: Gustavo Hidalgo Date: Tue, 16 Apr 2024 10:38:12 -0400 Subject: [PATCH] Add semicolons to one-line switch case --- .github/workflows/cicd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index dbca0115..bdad5b5c 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -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