Skip to content

Commit e4f01bd

Browse files
committed
fix: paths in main release workflow cache config
1 parent 66cd10b commit e4f01bd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ jobs:
484484
uses: actions/cache@v4
485485
with:
486486
path: |
487-
app/node_modules
487+
node_modules
488488
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}
489489
restore-keys: |
490490
${{ runner.os }}-node-
@@ -493,8 +493,8 @@ jobs:
493493
uses: actions/cache@v4
494494
with:
495495
path: |
496-
app/dist
497-
app/src-tauri/target/release
496+
dist
497+
src-tauri/target/release
498498
key: ${{ runner.os }}-${{ matrix.build_name }}-build-${{ hashFiles('**/package.json', '**/Cargo.toml', '**/src/**') }}
499499
restore-keys: |
500500
${{ runner.os }}-${{ matrix.build_name }}-build-
@@ -503,8 +503,8 @@ jobs:
503503
uses: actions/cache@v4
504504
with:
505505
path: |
506-
app/src-tauri/resources/build-jre
507-
key: ${{ runner.os }}-${{ matrix.target }}-jre-${{ hashFiles('app/src-tauri/scripts/setup-build-jre.sh') }}
506+
src-tauri/resources/build-jre
507+
key: ${{ runner.os }}-${{ matrix.target }}-jre-${{ hashFiles('src-tauri/scripts/setup-build-jre.sh') }}
508508
restore-keys: |
509509
${{ runner.os }}-${{ matrix.target }}-jre-
510510

0 commit comments

Comments
 (0)