Skip to content

Commit

Permalink
try: fix resolving from cache
Browse files Browse the repository at this point in the history
  • Loading branch information
planger committed Jan 9, 2025
1 parent 1b50ee7 commit 0ab0420
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
uses: actions/cache@v3
id: build-result
with:
path: ./*
path: ./
key: ${{ github.run_number }}

browser-tests:
Expand All @@ -80,7 +80,7 @@ jobs:
uses: actions/cache/restore@v3
id: build-result
with:
path: ./*
path: ./
key: ${{ github.run_number }}
fail-on-cache-miss: true

Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
uses: actions/cache/restore@v3
id: build-result
with:
path: ./*
path: ./
key: ${{ github.run_number }}
fail-on-cache-miss: true

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
uses: actions/cache@v3
id: build-result
with:
path: ./*
path: ./
key: ${{ github.run_number }}

run-browser-tests:
Expand All @@ -86,7 +86,7 @@ jobs:
uses: actions/cache/restore@v3
id: build-result
with:
path: ./*
path: ./
key: ${{ github.run_number }}
fail-on-cache-miss: true
- name: Use Node.js 20.x
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
uses: actions/cache/restore@v3
id: build-result
with:
path: ./*
path: ./
key: ${{ github.run_number }}
fail-on-cache-miss: true
- name: Use Node.js 20.x
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
uses: actions/cache/restore@v3
id: build-result
with:
path: ./*
path: ./
key: ${{ github.run_number }}
fail-on-cache-miss: true
- name: Get History
Expand Down

0 comments on commit 0ab0420

Please sign in to comment.