Skip to content

Commit c906377

Browse files
committed
[build] Fix cache keys
1 parent dd57832 commit c906377

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/deploy-pages.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ jobs:
114114
uses: actions/cache@v4
115115
with:
116116
path: .turbo
117-
key: ${{ runner.os }}-turbo-${{ github.sha }}
117+
key: ${{ runner.os }}-turbo-v3-${{ github.sha }}
118118
restore-keys: |
119-
${{ runner.os }}-turbo-
119+
${{ runner.os }}-turbo-v3
120120
121121
- name: Build
122122
run: pnpm run build --filter="./apps/*"

.github/workflows/version-and-publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
uses: actions/cache@v4
5353
with:
5454
path: .turbo
55-
key: ${{ runner.os }}-turbo-${{ github.sha }}
55+
key: ${{ runner.os }}-turbo-v3-${{ github.sha }}
5656
restore-keys: |
57-
${{ runner.os }}-turbo-
57+
${{ runner.os }}-turbo-v3
5858
5959
- name: Build
6060
run: pnpm run ci:build --filter="@sjsf/*" --filter="@sjsf-lab/*"

0 commit comments

Comments
 (0)