Skip to content

Commit

Permalink
deploy stage when pushing to suite-c4t (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-c4t authored Sep 26, 2024
1 parent ce76005 commit c483150
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,13 @@ jobs:
docker push ${{ steps.setDefaults.outputs.docker_image }}
gcloud run deploy camino-suite-${{ steps.setDefaults.outputs.build_env }} --image ${{ steps.setDefaults.outputs.docker_image }} --region=europe-west1
- name: push and deploy docker stage suite
if: ${{(github.event_name == 'push') && (github.ref == 'refs/heads/suite-c4t') }}
run: |
gcloud auth configure-docker --quiet europe-west3-docker.pkg.dev
docker push ${{ steps.setDefaults.outputs.docker_image }}
gcloud run deploy camino-suite-${{ steps.setDefaults.outputs.build_env }} --image ${{ steps.setDefaults.outputs.docker_image }} --region=europe-west1
- name: push and deploy docker stage suite
if: ${{(github.event_name == 'push') && contains(github.ref, 'refs/tags/') }}
run: |
Expand Down

0 comments on commit c483150

Please sign in to comment.