Skip to content

Commit

Permalink
ci: missing codecov token (WPB-8645) (#2927)
Browse files Browse the repository at this point in the history
* fix: codecov 4 with token

* chore: empty commit bump
  • Loading branch information
yamilmedina authored Aug 2, 2024
1 parent 9dbf5f5 commit 2829746
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/gradle-jvm-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.merge_group.head_sha }}
cancel-in-progress: true

env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

jobs:
detekt:
uses: ./.github/workflows/codestyle.yml
Expand Down Expand Up @@ -83,9 +86,10 @@ jobs:
files: |
**/build/test-results/**/*.xml
- name: Upload Test Report
uses: codecov/codecov-action@v3
- name: Upload test report to codecov
uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: "build/reports/kover/report.xml"

- name: Archive Kover report
Expand Down

0 comments on commit 2829746

Please sign in to comment.