Skip to content

Commit 5adadbf

Browse files
committed
fixed caching
1 parent 739f83b commit 5adadbf

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/publish-pipeline.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,11 @@ jobs:
6262
asset_content_type: application/zip
6363

6464
- name: Load cached test results
65-
uses: actions/cache@v3
65+
uses: actions/cache/restore@v3
6666
with:
67-
restore-keys: coverage-xml
67+
key: coverage-xml
68+
path: |
69+
'${{ github.workspace }}/MewtocolTests/coverage.opencover.xml'
6870
6971
- name: 'Upload coverage xml to latest release'
7072
uses: actions/upload-release-asset@v1

.github/workflows/test-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5151

5252
- name: Cache test results
53-
uses: actions/cache@v3
53+
uses: actions/cache/save@v3
5454
with:
5555
key: coverage-xml
5656
path: |

0 commit comments

Comments
 (0)