From 74082eadd2d972c9712cd31d2594f1a7e0ae9659 Mon Sep 17 00:00:00 2001 From: Ryan Hyun Date: Thu, 19 Feb 2026 17:34:30 -0800 Subject: [PATCH] fix: source bootstrap.sh in docker-authn.sh before calling devbase_configure_global_tools devbase_configure_global_tools calls get_devbase_directory, which is defined in bootstrap.sh. Without sourcing bootstrap.sh first, get_devbase_directory is undefined, causing mise.devbase.toml to not be copied and ghaccesstoken to have no version set, breaking GitHub auth in CI docker/release jobs. --- shell/ci/release/docker-authn.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell/ci/release/docker-authn.sh b/shell/ci/release/docker-authn.sh index 5b84af58..f1c35a5e 100755 --- a/shell/ci/release/docker-authn.sh +++ b/shell/ci/release/docker-authn.sh @@ -14,6 +14,9 @@ AUTH_DIR="${DIR}/../auth" LIB_DIR="${DIR}/../../lib" DOCKER_AUTH_DIR="${LIB_DIR}/docker/authn" +# shellcheck source=../../lib/bootstrap.sh +source "${LIB_DIR}/bootstrap.sh" + # shellcheck source=../../lib/logging.sh source "${LIB_DIR}/logging.sh"