We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3710e35 commit 507e30fCopy full SHA for 507e30f
.github/workflows/ci.yml
@@ -6,6 +6,8 @@ on:
6
jobs:
7
build:
8
runs-on: ubuntu-latest
9
+ env:
10
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
11
steps:
12
- uses: actions/checkout@v4
13
@@ -25,7 +27,7 @@ jobs:
25
27
26
28
# Make Coveralls non-blocking and only run if a token exists
29
- name: Upload coverage to Coveralls (non-blocking)
- if: ${{ secrets.COVERALLS_REPO_TOKEN != '' }}
30
+ if: ${{ env.COVERALLS_REPO_TOKEN != '' }}
31
uses: coverallsapp/github-action@v2
32
with:
33
github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments