Fix nightly Release (#3511)

This commit is contained in:
matt korwel 2025-07-07 23:41:39 -07:00 committed by GitHub
parent 0c70a99b56
commit 137ffec3f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View File

@ -143,7 +143,7 @@ jobs:
- name: Install latest core package
if: steps.vars.outputs.is_dry_run == 'false'
run: npm install @google/gemini-cli-core@${{ steps.version.outputs.NPM_TAG }} --workspace=@google/gemini-cli --save-exact
run: npm install @google/gemini-cli-core@${{ steps.version.outputs.RELEASE_VERSION }} --workspace=@google/gemini-cli --save-exact
- name: Publish @google/gemini-cli
run: npm publish --workspace=@google/gemini-cli --tag=${{ steps.version.outputs.NPM_TAG }} ${{ steps.vars.outputs.is_dry_run == 'true' && '--dry-run' || '' }}

View File

@ -13,6 +13,12 @@
"src/**/*.json",
"./package.json"
],
"exclude": ["node_modules", "dist", "src/**/*.test.ts"],
"exclude": [
"node_modules",
"dist",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"src/test-utils"
],
"references": [{ "path": "../core" }]
}