diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 420b109..7b83cd0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -88,7 +88,7 @@ jobs: # ─────────────────────────────────────────────────────────────── build-and-release: name: Build & Release Binaries - needs: publish-npm + needs: [publish-npm, check-version] runs-on: ubuntu-latest permissions: contents: write # Create tag + GitHub Release @@ -131,7 +131,7 @@ jobs: - name: Create GitHub Release uses: softprops/action-gh-release@v3 with: - tag: v${{ env.VERSION }} + tag_name: v${{ env.VERSION }} name: v${{ env.VERSION }} generate_release_notes: true files: | diff --git a/README.md b/README.md index 9dc681c..f0d9504 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,9 @@ A CLI tool for calling WeaveFox server-side open capabilities via the MCP protoc ### npm ```bash -# Run without installing -npx @weavefox/cli tools - -# Or install globally +# Install globally npm i -g @weavefox/cli +wf tools ``` ### Standalone binary (no Node.js required) diff --git a/README.zh-CN.md b/README.zh-CN.md index 1982b15..e30accb 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -16,11 +16,9 @@ ### npm ```bash -# 零安装直接运行 -npx @weavefox/cli tools - -# 或全局安装 +# 全局安装 npm i -g @weavefox/cli +wf tools ``` ### 独立二进制(无需 Node.js) diff --git a/package.json b/package.json index de47364..4b3efa5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@weavefox/cli", - "version": "0.0.2", + "version": "0.0.3", "description": "WeaveFox CLI - Call server-side open capabilities via MCP protocol, for developers and AI agents", "license": "MIT", "repository": {