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
5 changed files with 5 additions and 5 deletions

View File

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

View File

@@ -1,6 +1,6 @@
[package]
name = "ailog"
version = "0.3.3"
version = "0.3.4"
edition = "2021"
authors = ["syui"]
description = "A static blog generator with AI features"

Binary file not shown.

View File

@@ -1,6 +1,6 @@
{
"name": "ailog-oauth",
"version": "0.3.3",
"version": "0.3.4",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -1,6 +1,6 @@
{
"name": "pds-browser",
"version": "0.3.3",
"version": "0.3.4",
"description": "AT Protocol browser for ai.log",
"main": "index.js",
"type": "module",