Skip to content

Commit

Permalink
fix GHA syntax for dependent env
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Mortari <[email protected]>
  • Loading branch information
tarilabs committed Mar 18, 2024
1 parent 471563b commit 8dea997
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
env:
IMG_ORG: kubeflow
IMG_REPO: model-registry
IMG: ${{ env.IMG_ORG }}/${{ env.IMG_REPO }}
IMG: ${IMG_ORG}/${IMG_REPO}
DOCKER_USER: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKER_PWD: ${{ secrets.DOCKERHUB_TOKEN }}
PUSH_IMAGE: true
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-image-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
env:
IMG_ORG: kubeflow
IMG_REPO: model-registry
IMG: ${{ env.IMG_ORG }}/${{ env.IMG_REPO }}
IMG: ${IMG_ORG}/${IMG_REPO}
PUSH_IMAGE: false
BRANCH: ${{ github.base_ref }}
jobs:
Expand All @@ -37,6 +37,7 @@ jobs:
uses: karancode/[email protected]
with:
kustomize_version: '5.2.1'
kustomize_build_dir: 'manifests/kustomize/overlays/db'
- name: Start Kind Cluster
uses: helm/[email protected]
- name: Load Local Registry Test Image
Expand Down

0 comments on commit 8dea997

Please sign in to comment.