Skip to content

Commit

Permalink
fix(workflows): remove multiple flags from codecov config
Browse files Browse the repository at this point in the history
Fix error: "Multiple flags detected. Please ensure one flag per upload."

Signed-off-by: Art Shendrik <artyom.shendrik@gmail.com>
  • Loading branch information
amal committed Nov 26, 2024
1 parent 43d55df commit 288de9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: '**/build/test-results/*/TEST-*.xml'
env_vars: OS,JAVA_VERSION
flags: 'unit-tests,${{ matrix.os }}'
flags: '${{ matrix.os }}'
name: 'codecov-${{ matrix.os }}'
fail_ci_if_error: false
verbose: true
Expand All @@ -187,7 +187,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/reports/kover-merged-report.xml
env_vars: OS,JAVA_VERSION
flags: 'unit-tests,${{ matrix.os }}'
flags: '${{ matrix.os }}'
name: 'codecov-${{ matrix.os }}'
fail_ci_if_error: false
#verbose: true
Expand Down

0 comments on commit 288de9b

Please sign in to comment.