Skip to content

Commit

Permalink
Merge pull request #6997 from niveathika/main
Browse files Browse the repository at this point in the history
Fix cov report upload
  • Loading branch information
niveathika authored Sep 15, 2024
2 parents 3e508d2 + bbc9e9e commit 8765aa6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/s4hana-build-connector-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ jobs:
- name: Upload coverage reports
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.directory }}
path: ballerina/**/coverage-report.xml

upload-codcov:
Expand All @@ -99,7 +100,7 @@ jobs:
needs: build-connectors
steps:
- name: Download coverage reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Generate Codecov Report
uses: codecov/codecov-action@v3
3 changes: 2 additions & 1 deletion .github/workflows/s4hana-pr-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
- name: Upload coverage reports
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.directory }}
path: ballerina/**/coverage-report.xml

upload-codcov:
Expand All @@ -65,7 +66,7 @@ jobs:
needs: build-connectors
steps:
- name: Download coverage reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4

- name: Generate Codecov Report
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 8765aa6

Please sign in to comment.