Skip to content

Commit 1ae65e8

Browse files
authored
chore: fix claude token + run install and build in www (#14992)
1 parent 3ded7f5 commit 1ae65e8

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/cloud-docs-automation.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ jobs:
3535
with:
3636
extension: cloud-docs-automation
3737

38+
- name: Install www dependencies
39+
working-directory: www
40+
run: yarn install
41+
42+
- name: Build www packages
43+
working-directory: www
44+
run: yarn build
45+
3846
- name: Install www/utils dependencies
3947
working-directory: www/utils
4048
run: yarn install
@@ -110,7 +118,7 @@ jobs:
110118
if: steps.check.outputs.needs_docs == 'true'
111119
uses: anthropics/claude-code-base-action@beta
112120
with:
113-
anthropic_api_key: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
121+
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
114122
prompt: ${{ steps.extract-prompt.outputs.CLAUDE_PROMPT }}
115123
allowed_tools: "Skill,Read,Write,Edit,Glob,Grep,Bash(git diff:*,ls:*,find:*,cat:*)"
116124
max_turns: 40

.github/workflows/docs-automation.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ jobs:
3838
with:
3939
extension: docs-automation
4040

41+
- name: Install www dependencies
42+
working-directory: www
43+
run: yarn install
44+
45+
- name: Build www packages
46+
working-directory: www
47+
run: yarn build
48+
4149
- name: Install www/utils dependencies
4250
working-directory: www/utils
4351
run: yarn install

0 commit comments

Comments
 (0)