File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments