Skip to content

Commit 507e30f

Browse files
committed
workflow should be working now
1 parent 3710e35 commit 507e30f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
jobs:
77
build:
88
runs-on: ubuntu-latest
9+
env:
10+
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
911
steps:
1012
- uses: actions/checkout@v4
1113

@@ -25,7 +27,7 @@ jobs:
2527

2628
# Make Coveralls non-blocking and only run if a token exists
2729
- name: Upload coverage to Coveralls (non-blocking)
28-
if: ${{ secrets.COVERALLS_REPO_TOKEN != '' }}
30+
if: ${{ env.COVERALLS_REPO_TOKEN != '' }}
2931
uses: coverallsapp/github-action@v2
3032
with:
3133
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)