Skip to content

Commit 362f2e5

Browse files
committed
Add GitHub Container Registry login step and update Claude Code action reference
1 parent 6172d30 commit 362f2e5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/claude.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,23 @@ jobs:
2323
pull-requests: read
2424
issues: read
2525
id-token: write
26+
packages: read
2627
steps:
2728
- name: Checkout repository
2829
uses: actions/checkout@v4
2930
with:
3031
fetch-depth: 1
3132

33+
- name: Login to GitHub Container Registry
34+
uses: docker/login-action@v3
35+
with:
36+
registry: ghcr.io
37+
username: ${{ github.actor }}
38+
password: ${{ secrets.GH_TOKEN }}
39+
3240
- name: Run Claude Code
3341
id: claude
34-
uses: ./.github/actions/claude-code-action
42+
uses: ghcr.io/mervinpraison/praisonai-claudecode:latest
3543
with:
3644
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
3745
github_token: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)