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.
This commit is contained in:
mkorwel
2025-10-22 01:09:09 -07:00
parent ec7f503d13
commit 8c9494eb70
+5
View File
@@ -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 }}'