Skip to content

Commit ea6beee

Browse files
committed
add debugs
1 parent 0ce979a commit ea6beee

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

action.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,16 @@ runs:
116116
with:
117117
key: claude-oauth-credentials
118118
path: ${{ runner.temp }}/claude-oauth-credentials.json
119+
120+
- name: Debug cache status
121+
shell: bash
122+
run: |
123+
echo "Cache hit: ${{ steps.check-oauth-cache.outputs.cache-hit }}"
124+
echo "Cache key: ${{ steps.check-oauth-cache.outputs.cache-primary-key }}"
125+
echo "Cache file exists: $(test -f '${{ runner.temp }}/claude-oauth-credentials.json' && echo 'YES' || echo 'NO')"
126+
if [ -f "${{ runner.temp }}/claude-oauth-credentials.json" ]; then
127+
echo "Cache file size: $(wc -c < '${{ runner.temp }}/claude-oauth-credentials.json') bytes"
128+
fi
119129
120130
- name: Validate authentication
121131
id: validate-auth

0 commit comments

Comments
 (0)