Skip to content

Commit

Permalink
fixed caching
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandoun committed Jun 16, 2023
1 parent 739f83b commit 5adadbf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,11 @@ jobs:
asset_content_type: application/zip

- name: Load cached test results
uses: actions/cache@v3
uses: actions/cache/restore@v3
with:
restore-keys: coverage-xml
key: coverage-xml
path: |
'${{ github.workspace }}/MewtocolTests/coverage.opencover.xml'
- name: 'Upload coverage xml to latest release'
uses: actions/upload-release-asset@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Cache test results
uses: actions/cache@v3
uses: actions/cache/save@v3
with:
key: coverage-xml
path: |
Expand Down

0 comments on commit 5adadbf

Please sign in to comment.