Skip to content

Commit

Permalink
ci: add version tag to generate keys image build
Browse files Browse the repository at this point in the history
Signed-off-by: SRIKUMAR VENUGOPAL <srikumarv@ie.ibm.com>
  • Loading branch information
srikumar003 committed Aug 15, 2023
1 parent 93c7961 commit af3c906
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/generate-keys/build_and_push_multiarch_generate_keys.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash

REGISTRY_URL="${1:-quay.io/datashim-io}"
docker buildx build --platform linux/amd64,linux/arm64,linux/ppc64le --push -t ${REGISTRY_URL}/generate-keys .
VERSION="${2:-latest}"
docker buildx build --platform linux/amd64,linux/arm64,linux/ppc64le --push -t ${REGISTRY_URL}/generate-keys:${VERSION} .

0 comments on commit af3c906

Please sign in to comment.