Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kubeflow/model-registry
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c5fbf3d2ee4796189c91dda884d63cb17e61038b
Choose a base ref
..
head repository: kubeflow/model-registry
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1b73fb249f0fb01538b78794ed34604a46e0050f
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 .github/workflows/build-and-push-image.yml
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push-image.yml
Original file line number Diff line number Diff line change
@@ -47,15 +47,15 @@ jobs:
shell: bash
run: ./scripts/build_deploy.sh
- name: Tag Latest
if: env.BUILD_CONTEXT == 'tag'
if: env.BUILD_CONTEXT == 'main'
shell: bash
env:
IMG: quay.io/${{ env.QUAY_ORG }}/${{ env.QUAY_IMG_REPO }}
BUILD_IMAGE: false
run: |
docker tag ${{ env.IMG }}:$VERSION ${{ env.IMG }}:latest
# BUILD_IMAGE=false skip the build, just push the tag made above
VERSION=latest ./scripts/build_deploy.sh
VERISON=latest ./scripts/build_deploy.sh
- name: Tag Main
if: env.BUILD_CONTEXT == 'main'
shell: bash