diff --git a/.github/workflows/build_and_push_image_on_tag.yml b/.github/workflows/build_and_push_image_on_tag.yml index ce8d46082..33289443b 100644 --- a/.github/workflows/build_and_push_image_on_tag.yml +++ b/.github/workflows/build_and_push_image_on_tag.yml @@ -33,7 +33,6 @@ jobs: git checkout $latestTag echo "Latest tag is $latestTag" podman --version - cd Dockerfiles/midstream/ - podman build -t midstream_image:$latestTag -f Dockerfile --build-arg OPERATOR_SDK_VERSION=v1.4.0 --build-arg OPERATOR_TEST_PLAYBOOKS_TAG=$latestTag + podman build -t midstream_image:$latestTag -f Dockerfiles/midstream/Dockerfile . podman login -u="$QUAY_USERNAME" -p="$QUAY_PASSWORD" quay.io - podman push midstream_image:$latestTag quay.io/samvarankashyap/cvp-midstream-image:$latestTag + podman push midstream_image:$latestTag quay.io/cvpops/cvp-midstream-image:$latestTag diff --git a/.github/workflows/build_and_push_latest_image.yml b/.github/workflows/build_and_push_latest_image.yml index a891bc2f8..1b13b1024 100644 --- a/.github/workflows/build_and_push_latest_image.yml +++ b/.github/workflows/build_and_push_latest_image.yml @@ -32,7 +32,6 @@ jobs: QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }} run: | podman --version - cd Dockerfiles/midstream/ - podman build -t midstream_image:latest -f Dockerfile --build-arg OPERATOR_SDK_VERSION=v1.4.0 --build-arg OPERATOR_TEST_PLAYBOOKS_TAG=master + podman build -t midstream_image:latest -f Dockerfiles/midstream/Dockerfile . podman login -u="$QUAY_USERNAME" -p="$QUAY_PASSWORD" quay.io - podman push midstream_image:latest quay.io/samvarankashyap/cvp-midstream-image + podman push midstream_image:latest quay.io/cvpops/cvp-midstream-image:latest