From b238cccd616ef0e0536fb4dcf06f6fccbd391ceb Mon Sep 17 00:00:00 2001 From: Cryptob3auty <76785638+Rose2161@users.noreply.github.com> Date: Tue, 28 Apr 2026 17:19:22 -0700 Subject: [PATCH] Correct CIRCLE_SHORT_SHA1 to CIRCLE_SHORT_SHA256 Fix typo in environment variable for short SHA256. Signed-off-by: Cryptob3auty <76785638+Rose2161@users.noreply.github.com> --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4804859e6..b5ef86f64 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -124,7 +124,7 @@ jobs: name: Build with build.spec command: | export PYTHONHASHSEED=42 - export CIRCLE_SHORT_SHA1=$(eval echo $CIRCLE_SHA1 | cut -c -7) + export CIRCLE_SHORT_SHA256=$(eval echo $CIRCLE_SHA2256 | cut -c -7) export BUILD_FILE_NAME=staking_deposit-cli-${CIRCLE_SHORT_SHA1}-linux-amd64; mkdir ${BUILD_FILE_NAME}; pyenv global 3.10.2;