From 8c9494eb700f86b8f984c4bddd503b792d2512f3 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Wed, 22 Oct 2025 01:09:09 -0700 Subject: [PATCH] fix(ci): Add npm config step to e2e_linux job Adds the 'Configure npm for GitHub Packages' step to the 'e2e_linux' job in 'e2e.yml'. This was missing, causing the job to fail when trying to install the test package from the GitHub Packages registry. --- .github/workflows/e2e.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 2033b02eee..ae0334e486 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -48,6 +48,11 @@ jobs: with: ref: '${{ github.event.inputs.branch_ref || github.ref }}' + - name: 'Configure npm for GitHub Packages' + run: | + echo "@google-gemini:registry=https://npm.pkg.github.com/" > .npmrc + echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc + - name: 'Install dependencies' run: 'npm install @google-gemini/gemini-cli@${{ inputs.version }}'