feat: rewrite of publish to go back to js from binaries (#3)

This commit is contained in:
Charles Packer
2025-10-24 22:28:29 -07:00
committed by GitHub
parent 0e4ad63321
commit e356bdce0a
11 changed files with 145 additions and 122 deletions

View File

@@ -46,20 +46,20 @@ jobs:
- name: Lint
run: bun run lint
- name: Build binary
- name: Build bundle
run: bun run build
- name: CLI help smoke test
run: ./bin/letta --help
run: ./letta.js --help
- name: CLI version smoke test
run: ./bin/letta --version || true
run: ./letta.js --version || true
- name: Headless smoke test (API)
if: ${{ github.event_name == 'push' }}
env:
LETTA_API_KEY: ${{ secrets.LETTA_API_KEY }}
run: ./bin/letta --prompt "ping" --tools "" --permission-mode plan
run: ./letta.js --prompt "ping" --tools "" --permission-mode plan
- name: Publish dry-run
if: ${{ github.event_name == 'push' }}