Skip to content

Commit

Permalink
[coveralls] Remove quotes from repo token
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Jan 21, 2024
1 parent 00e63a7 commit 47d0e7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coveralls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
distribution: zulu
- name: Report Coverage to Coveralls for Pull Requests
if: github.event_name == 'pull_request'
run: ./mvnw -B -V test jacoco:report coveralls:report -q -D"license.skip=true" -DrepoToken="$COVERALLS_REPO_TOKEN" -DserviceName=github -DpullRequest=$PR_NUMBER --no-transfer-progress --file Source/JNA/pom.xml -Pcoveralls
run: ./mvnw -B -V test jacoco:report coveralls:report -q -D"license.skip=true" -DrepoToken=$COVERALLS_REPO_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER --no-transfer-progress --file Source/JNA/pom.xml -Pcoveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
PR_NUMBER: ${{ github.event.number }}
- name: Report Coverage to Coveralls for General Push
if: github.event_name == 'push'
run: ./mvnw -B -V test jacoco:report coveralls:report -q -D"license.skip=true" -DrepoToken="$COVERALLS_REPO_TOKEN" -DserviceName=github --no-transfer-progress --file Source/JNA/pom.xml -Pcoveralls
run: ./mvnw -B -V test jacoco:report coveralls:report -q -D"license.skip=true" -DrepoToken=$COVERALLS_REPO_TOKEN -DserviceName=github --no-transfer-progress --file Source/JNA/pom.xml -Pcoveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

0 comments on commit 47d0e7b

Please sign in to comment.