Skip to content

Commit a1ab01a

Browse files
authored
Merge pull request #40 from Priyankasaggu11929/fix-failing-job
fix failing build/publish job
2 parents 3157db1 + 29a3648 commit a1ab01a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ steps:
66
- name: gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20251211-3eba3d0954
77
entrypoint: ./scripts/build-and-publish-image.sh
88
env:
9-
- IMG_PREFIX=us-central1-docker.pkg.dev/k8s-staging-images/node-readiness-controller
9+
- IMG_PREFIX=us-central1-docker.pkg.dev/k8s-staging-images/node-readiness-controller/node-readiness-controller

scripts/build-and-publish-image.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ if [[ -z ${IMG_TAG:-} ]]; then
2020
fi
2121
echo "Using IMG_TAG=${IMG_TAG}"
2222

23-
IMG_TAG=${IMG_TAG} IMG_PREFIX=${IMG_PREFIX%/} make docker-build
23+
IMG_TAG=${IMG_TAG} IMG_PREFIX=${IMG_PREFIX} make docker-build
2424

25-
IMG_TAG=${IMG_TAG} IMG_PREFIX=${IMG_PREFIX%/} make docker-push
25+
IMG_TAG=${IMG_TAG} IMG_PREFIX=${IMG_PREFIX} make docker-push

0 commit comments

Comments
 (0)