mirror of
https://github.com/cline/cline.git
synced 2026-09-21 05:10:09 +08:00
Remove the deprecated Go CLI and make the TypeScript CLI the sole CLI implementation. Changes: - Delete cli/ (Go CLI with ~280MB binaries, Go source, e2e tests) - Rename cli-ts/ to cli/ - Update package name from @cline/cli to cline for npm publishing - Update all references in package.json scripts, workflows, configs - Remove Go-specific scripts (build-cli.sh, build-go-proto.mjs, etc.) - Add comprehensive development docs to cli/README.md Scripts for CLI development: - npm run install:all - install deps for root, webview-ui, and cli - npm run cli:build - generate protos and build CLI - npm run cli:link - build and npm link for global cline command - npm run cli:dev - link + watch mode for development
113 lines
3.6 KiB
YAML
113 lines
3.6 KiB
YAML
name: Publish NPM Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
confirm_publish:
|
|
description: 'Type "publish" to confirm you want to publish to NPM'
|
|
required: true
|
|
type: string
|
|
|
|
permissions:
|
|
contents: read
|
|
checks: write # Required by test workflow
|
|
pull-requests: write # Required by test workflow
|
|
|
|
jobs:
|
|
test:
|
|
uses: ./.github/workflows/test.yml
|
|
|
|
publish-npm-release:
|
|
needs: test
|
|
name: Publish Cline CLI to NPM
|
|
if: github.repository == 'cline/cline' && github.ref == 'refs/heads/main' && github.event.inputs.confirm_publish == 'publish'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20.x'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
# Cache root dependencies
|
|
- name: Cache root dependencies
|
|
uses: actions/cache@v4
|
|
id: root-cache
|
|
with:
|
|
path: node_modules
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
|
|
|
|
# Cache cli dependencies
|
|
- name: Cache cli dependencies
|
|
uses: actions/cache@v4
|
|
id: cli-cache
|
|
with:
|
|
path: cli/node_modules
|
|
key: ${{ runner.os }}-npm-cli-${{ hashFiles('cli/package-lock.json') }}
|
|
|
|
- name: Install root dependencies
|
|
if: steps.root-cache.outputs.cache-hit != 'true'
|
|
run: npm ci --include=optional
|
|
|
|
- name: Install cli dependencies
|
|
if: steps.cli-cache.outputs.cache-hit != 'true'
|
|
run: cd cli && npm ci
|
|
|
|
- name: Generate Protos
|
|
run: npm run protos
|
|
|
|
- name: Read release version
|
|
id: version
|
|
run: |
|
|
# Read version from cli/package.json
|
|
VERSION=$(node -p "require('./cli/package.json').version")
|
|
echo "Release version: $VERSION"
|
|
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
|
|
- name: Clean previous builds
|
|
run: rm -rf dist-standalone
|
|
|
|
- name: Build and package CLI
|
|
env:
|
|
TELEMETRY_SERVICE_API_KEY: ${{ secrets.TELEMETRY_SERVICE_API_KEY }}
|
|
ERROR_SERVICE_API_KEY: ${{ secrets.ERROR_SERVICE_API_KEY }}
|
|
CLINE_ENVIRONMENT: production
|
|
OTEL_TELEMETRY_ENABLED: "1"
|
|
OTEL_METRICS_EXPORTER: otlp
|
|
OTEL_LOGS_EXPORTER: otlp
|
|
OTEL_EXPORTER_OTLP_PROTOCOL: ${{ secrets.OTEL_EXPORTER_OTLP_PROTOCOL }}
|
|
OTEL_EXPORTER_OTLP_ENDPOINT: ${{ secrets.OTEL_EXPORTER_OTLP_ENDPOINT }}
|
|
OTEL_EXPORTER_OTLP_HEADERS: ${{ secrets.OTEL_EXPORTER_OTLP_HEADERS }}
|
|
POSTHOG_TELEMETRY_ENABLED: "true"
|
|
run: node scripts/package-npm.mjs
|
|
|
|
- name: Verify build output
|
|
run: |
|
|
echo "Checking dist-standalone directory..."
|
|
ls -la dist-standalone/
|
|
|
|
echo "Checking dist-standalone/dist..."
|
|
ls -la dist-standalone/dist/
|
|
|
|
echo "Checking package.json in dist-standalone..."
|
|
cat dist-standalone/package.json
|
|
|
|
- name: Publish to NPM with latest tag
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_RELEASE_TOKEN }}
|
|
run: |
|
|
echo "Publishing version ${{ steps.version.outputs.version }} to NPM with tag 'latest'..."
|
|
cd dist-standalone
|
|
npm publish --tag latest --access public
|
|
|
|
- name: Summary
|
|
run: |
|
|
echo "✅ Successfully published cline@${{ steps.version.outputs.version }} to NPM with tag 'latest'"
|
|
echo ""
|
|
echo "📦 Install with: npm install -g cline"
|
|
echo "🔗 NPM: https://www.npmjs.com/package/cline/v/${{ steps.version.outputs.version }}"
|