Skip to content

Commit 7451dad

Browse files
authored
Merge pull request #1912 from Hack23/copilot/fix-release-issues
Fix release workflow hashFiles failure in cache post-action
2 parents 98371c8 + 9bc6872 commit 7451dad

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
9292
with:
9393
path: ~/.cache/Cypress
94-
key: v2-cypress-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
94+
key: v2-cypress-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
9595
restore-keys: |
9696
v2-cypress-${{ runner.os }}-
9797
@@ -203,7 +203,7 @@ jobs:
203203
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
204204
with:
205205
path: node_modules/.vite
206-
key: v2-${{ runner.os }}-vite-${{ hashFiles('**/package-lock.json') }}
206+
key: v2-${{ runner.os }}-vite-${{ hashFiles('package-lock.json') }}
207207
restore-keys: |
208208
v2-${{ runner.os }}-vite-
209209

0 commit comments

Comments
 (0)