From 02c6c773249dbc5ddab88408705baed9cc74c50c Mon Sep 17 00:00:00 2001 From: Gal Zahavi <38544478+galz10@users.noreply.github.com> Date: Wed, 24 Jun 2026 15:04:47 -0700 Subject: [PATCH] fix(ci): prevent workspace binary shadowing in release verification (#28132) --- .github/actions/verify-release/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/verify-release/action.yml b/.github/actions/verify-release/action.yml index d6fe138f8a..122802a9ab 100644 --- a/.github/actions/verify-release/action.yml +++ b/.github/actions/verify-release/action.yml @@ -98,4 +98,6 @@ runs: # See https://github.com/google-gemini/gemini-cli/issues/10517 CI: 'false' shell: 'bash' - run: 'npm run test:integration:sandbox:none' + run: | + export INTEGRATION_TEST_GEMINI_BINARY_PATH=$(which gemini) + npm run test:integration:sandbox:none