Skip to content

Commit

Permalink
(build) Actually clone the repo before upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Windos committed May 13, 2023
1 parent c190138 commit a50c02c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ jobs:
runs-on: ubuntu-latest
if: always()
steps:
- uses: actions/checkout@v3
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
Expand All @@ -100,8 +101,13 @@ jobs:
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: artifacts/**/TestResults.xml
- name: Publish Code Coverage Results
- name: Publish Code Coverage Results to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: artifacts/CoverageResults.xml
- name: Publish Code Coverage Results to Codacy
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: artifacts/CoverageResults.xml

0 comments on commit a50c02c

Please sign in to comment.