Skip to content

Commit

Permalink
lowercase acr
Browse files Browse the repository at this point in the history
  • Loading branch information
ghidalgo3 committed Apr 16, 2024
1 parent d68ec50 commit f0ffcb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit f0ffcb1

Please sign in to comment.