From 0b422900960ce59a9df819752e254909e5e69302 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Fri, 4 Jul 2025 12:38:00 -0700 Subject: [PATCH] **chore(deploy): remove GitHub release automation from deploy:cli script** - Updated `package.json` to modify the `deploy:cli` script by removing the call to `scripts/create-github-release.js`. - Simplified the deployment process for the CLI package by decoupling GitHub release creation. This change aims to streamline the CLI deployment workflow, allowing more flexibility in managing GitHub releases. --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 754cb353..e1056d81 100644 --- a/package.json +++ b/package.json @@ -45,8 +45,7 @@ "check-style": "node scripts/check-code-style.js", "prepare": "npm run build", "deploy": "npm run build && npm publish && node scripts/create-github-release.js", - "deploy:cli": "node scripts/generate-version.js && cd cli-package && npm run build && npm publish && node ../scripts/create-github-release.js", - "deploy:both": "node scripts/publish-cli.js", + "deploy:cli": "node scripts/generate-version.js && cd cli-package && npm run build && npm publish", "deploy:cloud:aws": "cd cloud-wrapper && npm run build && npm run deploy:aws", "deploy:cloud:gcp": "cd cloud-wrapper && npm run build && npm run deploy:gcp", "deploy:cloud:cloudflare": "cd cloud-wrapper && npm run build && npm run deploy:cloudflare",