Skip to content

Commit 56a0806

Browse files
BRBussyclaude
andcommitted
fix(ci): Use correct generation targets for TypeScript SDK workflows
- Change ts-old-deploy.yml to use --targets=ts-old - Change ts-web-deploy.yml to use --targets=ts-web - Change ts-node-deploy.yml to use --targets=ts-node The generation script expects specific targets (ts-old, ts-web, ts-node) instead of the generic "typescript" target. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent a801e10 commit 56a0806

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ts-node-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
github_token: ${{ github.token }}
6565

6666
- name: Generate TypeScript code from protobuf
67-
run: ./dev/tool.sh generate --targets=typescript
67+
run: ./dev/tool.sh generate --targets=ts-node
6868

6969
- name: Run TypeScript tests (early validation)
7070
working-directory: ./ts-node

.github/workflows/ts-old-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
github_token: ${{ github.token }}
6565

6666
- name: Generate TypeScript code from protobuf
67-
run: ./dev/tool.sh generate --targets=typescript
67+
run: ./dev/tool.sh generate --targets=ts-old
6868

6969
- name: Run TypeScript tests (early validation)
7070
working-directory: ./ts-old

.github/workflows/ts-web-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
github_token: ${{ github.token }}
6565

6666
- name: Generate TypeScript code from protobuf
67-
run: ./dev/tool.sh generate --targets=typescript
67+
run: ./dev/tool.sh generate --targets=ts-web
6868

6969
- name: Run TypeScript tests (early validation)
7070
working-directory: ./ts-web

0 commit comments

Comments
 (0)