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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ gh secret set ANTHROPIC_API_KEY

**Option 2: Claude Max (OAuth)**
```bash
cat ~/.local/share/opencode/auth.json | base64 | gh secret set OPENCODE_AUTH
gh secret set OPENCODE_AUTH < ~/.local/share/opencode/auth.json
```

## CLI Options
Expand Down
2 changes: 1 addition & 1 deletion actions/doc-sync/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
shell: bash
run: |
mkdir -p ~/.local/share/opencode
echo "$OPENCODE_AUTH" | base64 -d > ~/.local/share/opencode/auth.json
echo "$OPENCODE_AUTH" > ~/.local/share/opencode/auth.json

- name: Configure Git
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion actions/issue-label/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
shell: bash
run: |
mkdir -p ~/.local/share/opencode
echo "$OPENCODE_AUTH" | base64 -d > ~/.local/share/opencode/auth.json
echo "$OPENCODE_AUTH" > ~/.local/share/opencode/auth.json

- name: Install skill
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion actions/pr-review/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
shell: bash
run: |
mkdir -p ~/.local/share/opencode
echo "$OPENCODE_AUTH" | base64 -d > ~/.local/share/opencode/auth.json
echo "$OPENCODE_AUTH" > ~/.local/share/opencode/auth.json

- name: Install skill
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ gh secret set ANTHROPIC_API_KEY
Or if using Claude Max subscription:

```bash
cat ~/.local/share/opencode/auth.json | base64 | gh secret set OPENCODE_AUTH
gh secret set OPENCODE_AUTH < ~/.local/share/opencode/auth.json
```

## PR Review
Expand Down
Loading