summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatt korwel <[email protected]>2025-07-07 23:41:39 -0700
committerGitHub <[email protected]>2025-07-08 06:41:39 +0000
commit137ffec3f6fe035b7edcb478e6c44e66fa593839 (patch)
tree7f2f2e831640b9e9f6335ddbf2a8aead7b726024
parent0c70a99b567d46cb3a90774d41a72670d6727dfb (diff)
Fix nightly Release (#3511)
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--packages/cli/tsconfig.json8
2 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 17085320..c6bca6a0 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -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' || '' }}
diff --git a/packages/cli/tsconfig.json b/packages/cli/tsconfig.json
index 936bbbda..c0faa166 100644
--- a/packages/cli/tsconfig.json
+++ b/packages/cli/tsconfig.json
@@ -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" }]
}