Skip to content

Commit 37d5bb9

Browse files
authored
Merge pull request #1362 from system76/invalidate-pipline-cache
Invalidate Pipeline Cache for troubleshooting
2 parents 621d74f + 8f3947f commit 37d5bb9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/cache@v5
2626
with:
2727
path: ./node_modules
28-
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
28+
key: v2-${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
2929

3030
- if: steps.cache.outputs.cache-hit != 'true'
3131
name: Install
@@ -37,6 +37,9 @@ jobs:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838
NODE_ENV: production
3939

40+
- name: Debug
41+
run: ls -la dist/ .output/public/ 2>&1 || true
42+
4043
- name: Upload
4144
uses: actions/upload-pages-artifact@v3
4245
with:

0 commit comments

Comments
 (0)