**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.
This commit is contained in:
David Snelling 2025-07-04 12:38:00 -07:00
parent 0c334df1bc
commit 9293328e72

View file

@ -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",