We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65b6b84 commit a6b851fCopy full SHA for a6b851f
1 file changed
.github/workflows/ci.yml
@@ -58,6 +58,8 @@ jobs:
58
unit-tests:
59
name: Unit Tests
60
runs-on: ubuntu-latest
61
+ env:
62
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
63
64
steps:
65
- name: Checkout
@@ -78,10 +80,10 @@ jobs:
78
80
org.jacoco:jacoco-maven-plugin:0.8.12:report
79
81
82
- name: Upload coverage to Codecov
- if: ${{ secrets.CODECOV_TOKEN != '' }}
83
+ if: ${{ env.CODECOV_TOKEN != '' }}
84
uses: codecov/codecov-action@v5
85
with:
- token: ${{ secrets.CODECOV_TOKEN }}
86
+ token: ${{ env.CODECOV_TOKEN }}
87
files: ./ezrtp-common/target/site/jacoco/jacoco.xml,./ezrtp-bukkit/target/site/jacoco/jacoco.xml,./ezrtp-paper/target/site/jacoco/jacoco.xml
88
flags: unit
89
name: ezrtp-unit
0 commit comments