From 4ec2867b30d585abbc10a82d74a01895c207f74e Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Thu, 26 Jan 2023 10:52:05 +0100 Subject: [PATCH] fix(build): crons image tag Signed-off-by: rjshrjndrn --- ee/api/build_crons.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/api/build_crons.sh b/ee/api/build_crons.sh index 4d246265a..701c960fb 100644 --- a/ee/api/build_crons.sh +++ b/ee/api/build_crons.sh @@ -37,7 +37,7 @@ function build_crons(){ docker push ${DOCKER_REPO:-'local'}/crons:${tag}latest } [[ $SIGN_IMAGE -eq 1 ]] && { - cosign sign --key $SIGN_KEY ${DOCKER_REPO:-'local'}/crons:${image_tag} + cosign sign --key $SIGN_KEY ${DOCKER_REPO:-'local'}/crons:${git_sha1} } echo "completed crons build" }