From e1c1ba8b366597326f3b7117f0b2cf3e956adc66 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 24 Mar 2022 09:33:39 -0700 Subject: [PATCH] fix: source lib.sh in docker-buildx-push for tagging version (#5024) --- ci/steps/docker-buildx-push.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/steps/docker-buildx-push.sh b/ci/steps/docker-buildx-push.sh index ba09cd76a115..ebe86047c0bd 100755 --- a/ci/steps/docker-buildx-push.sh +++ b/ci/steps/docker-buildx-push.sh @@ -3,6 +3,9 @@ set -euo pipefail main() { cd "$(dirname "$0")/../.." + # ci/lib.sh sets VERSION so it's available to ci/release-image/docker-bake.hcl + # to push the VERSION tag. + source ./ci/lib.sh # NOTE@jsjoeio - this script assumes that you've downloaded # the release-packages artifact to ./release-packages before