Skip to content

Commit

Permalink
hardcoding version
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Peterson <[email protected]>
  • Loading branch information
mattp-swirldslabs committed Dec 19, 2024
1 parent 938b462 commit 12c6c31
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,19 +153,18 @@ start_group "Prepare the Docker Image Information"

start_task "Resolving the DOCKER_REGISTRY variable"
if [[ -z "${DOCKER_REGISTRY}" ]]; then
echo "default DOCKER_REGISTRY!!"
DOCKER_REGISTRY="grpc.io"
fi
end_task "DONE (Registry: ${DOCKER_REGISTRY})"

start_task "Resolving the DOCKER_TAG variable"
if [[ -z "${DOCKER_TAG}" ]]; then
DOCKER_TAG="$(echo "${GITHUB_SHA}" | tr -d '[:space:]' | cut -c1-8)"
fi
end_task "DONE (Tag: ${DOCKER_TAG})"
# start_task "Resolving the DOCKER_TAG variable"
# if [[ -z "${DOCKER_TAG}" ]]; then
# DOCKER_TAG="$(echo "${GITHUB_SHA}" | tr -d '[:space:]' | cut -c1-8)"
# fi
# end_task "DONE (Tag: ${DOCKER_TAG})"

start_task "Resolving the Fully Qualified Image Name"
FQ_IMAGE_NAME="${DOCKER_REGISTRY}/${DOCKER_IMAGE_NAME}:${DOCKER_TAG}"
FQ_IMAGE_NAME="${DOCKER_REGISTRY}/${DOCKER_IMAGE_NAME}:0.3.0-SNAPSHOT"
end_task "DONE (Image: ${FQ_IMAGE_NAME})"
end_group

Expand Down

0 comments on commit 12c6c31

Please sign in to comment.