Skip to content

Commit 413a8c6

Browse files
committed
fix(ci): correct SEA binary cache path to match build workflow
The build-sea.yml workflow caches `dist/sea/` but the CI workflow was trying to restore `dist/`. This path mismatch caused the cache to not be restored properly. Changed cache path from: packages/node-sea-builder/dist/ To: packages/node-sea-builder/dist/sea/ This matches the cache path used in build-sea.yml line 464.
1 parent 913d45c commit 413a8c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
id: sea-cache
115115
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
116116
with:
117-
path: packages/node-sea-builder/dist/
117+
path: packages/node-sea-builder/dist/sea/
118118
key: node-sea-linux-x64-${{ steps.cache-keys.outputs.sea-hash }}
119119
restore-keys: node-sea-linux-x64-
120120

0 commit comments

Comments
 (0)