2 Commits

Author SHA1 Message Date
3af175f4ed Fix: Update cache key to include Cargo.toml hash
This forces cache invalidation when version changes

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-10 04:59:27 +09:00
0e1dff12c2 add binary 2025-08-10 04:59:27 +09:00
2 changed files with 2 additions and 2 deletions

View File

@@ -56,9 +56,9 @@ jobs:
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
path: ./bin path: ./bin
key: ailog-bin-${{ runner.os }} key: ailog-bin-${{ runner.os }}-v${{ hashFiles('Cargo.toml') }}
restore-keys: | restore-keys: |
ailog-bin-${{ runner.os }} ailog-bin-${{ runner.os }}-v
- name: Setup ailog binary - name: Setup ailog binary
run: | run: |

Binary file not shown.