Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/build_and_push_image_on_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 2 additions & 3 deletions .github/workflows/build_and_push_latest_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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