From f0ffcb1b8bb52688f7770464aef9a02fc9909e75 Mon Sep 17 00:00:00 2001 From: Gustavo Hidalgo Date: Tue, 16 Apr 2024 10:27:01 -0400 Subject: [PATCH] lowercase acr --- .github/workflows/cicd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 8da48b54..dbca0115 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -33,16 +33,16 @@ jobs: case "${GITHUB_REF}" in *tags*) echo "tag=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT - echo "ACR=pccomponents" >> $GITHUB_OUTPUT + echo "acr=pccomponents" >> $GITHUB_OUTPUT ;; *) echo "tag=latest" >> $GITHUB_OUTPUT - echo "ACR=pccomponentstest" >> $GITHUB_OUTPUT + echo "acr=pccomponentstest" >> $GITHUB_OUTPUT ;; esac - name: Publish images - run: ./scripts/cipublish --acr ${{steps.get_image_tag.outputs.ACR}} --tag ${{steps.get_image_tag.outputs.tag}} + run: ./scripts/cipublish --acr ${{steps.get_image_tag.outputs.acr}} --tag ${{steps.get_image_tag.outputs.tag}} outputs: image_tag: ${{ steps.get_image_tag.outputs.tag }}