Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,12 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish @tego/bot-cli
run: pnpm publish --access public --no-git-checks
working-directory: packages/bot-cli
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

create-release:
name: Create GitHub Release
runs-on: ubuntu-latest
Expand Down Expand Up @@ -309,6 +315,7 @@ jobs:
- `@tego/bot@${{ steps.version.outputs.VERSION }}` - Rust core with N-API bindings
- `@tego/botjs@${{ steps.version.outputs.VERSION }}` - TypeScript wrapper (recommended)
- `@tego/bot-agent@${{ steps.version.outputs.VERSION }}` - AI-powered CLI tool
- `@tego/bot-cli@${{ steps.version.outputs.VERSION }}` - CLI wrapper for botjs

### Platform Binaries
- `@tego/bot-darwin-x64` - macOS Intel
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"check:fix": "biome check --write",
"build": "pnpm rs:build --platform && pnpm ts:build",
"rs:build": "pnpm --filter @tego/bot build",
"ts:build": "pnpm --filter @tego/botjs build && pnpm --filter @tego/bot-agent build",
"ts:build": "pnpm --filter @tego/botjs build && pnpm --filter @tego/bot-agent build && pnpm --filter @tego/bot-cli build",
"agent:build": "pnpm --filter @tego/bot-agent build",
"agent:dev": "pnpm --filter @tego/bot-agent dev",
"agent:test": "pnpm --filter @tego/bot-agent test",
Expand Down
Loading