Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Push image to prod ACR with unique tag #238

Merged
merged 7 commits into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Get Most Recent Tag
id: most-recent-tag
uses: "WyriHaximus/github-action-get-previous-tag@v1"

- name: Log in with Azure
uses: azure/login@v1
Expand All @@ -35,25 +41,25 @@ jobs:
- name: Run cibuild
run: ./scripts/cibuild

- name: Get image tag
id: get_image_tag
- name: Publish Image
id: publish_image
run:
case "${GITHUB_REF}" in
*tags*)
echo "tag=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT ;
echo "acr=pccomponents" >> $GITHUB_OUTPUT
./scripts/cipublish --acr pccomponents --tag ${{tag}}
;;
*)
echo "Publishing to pccomponentstest as latest" ;
echo "tag=latest" >> $GITHUB_OUTPUT ;
echo "acr=pccomponentstest" >> $GITHUB_OUTPUT
./scripts/cipublish --acr pccomponentstest --tag latest ;
echo "Also publishing to pccomponents ACR with unique tag" ;
./scripts/cipublish --acr pccomponents --tag ${{ steps.most-recent-tag.outputs.tag }}.${{ github.run_number }}
;;
esac

- name: Publish images
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 }}
image_tag: ${{ steps.publish_image.outputs.tag }}

deploy:
runs-on: ubuntu-latest
Expand Down
Loading