From 6831c79c0a6f74eb5876ef280c462f6f832909c3 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Thu, 23 Oct 2025 10:11:58 -0700 Subject: [PATCH] fix(ci): remove redundant npm install in sandbox build Removes the unnecessary `npm install` step from the `build-and-publish-sandbox` job. The Dockerfile is responsible for installing the correct version of the package, so this step was redundant. --- .github/workflows/build-and-publish.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index 6bf3476cdb..7e89f2ba60 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -92,9 +92,6 @@ jobs: with: github-token: '${{ secrets.GITHUB_TOKEN }}' - - name: 'Install Published CLI' - run: 'npm install @google/gemini-cli@${{ needs.publish-bundle.outputs.version }}' - - name: 'Log in to GitHub Container Registry' uses: 'docker/login-action@v3' with: