mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
fixed syntax error
This commit is contained in:
parent
c365201d4f
commit
bf683e5bf7
8
.github/workflows/submit_coverage.yml
vendored
8
.github/workflows/submit_coverage.yml
vendored
@ -4,9 +4,8 @@ name: Submit coverage
|
||||
# access to secrets
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ["Build and test"]
|
||||
types:
|
||||
- completed
|
||||
workflows: [Build and test]
|
||||
types: [completed]
|
||||
|
||||
env:
|
||||
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
||||
@ -35,7 +34,8 @@ jobs:
|
||||
shell: bash
|
||||
|
||||
- name: 'Generate full report'
|
||||
run: cat coveralls.json | jq --arg repo_token $COVERALLS_REPO_TOKEN '. += {repo_token: $repo_token}' > coveralls_full.json
|
||||
run: |
|
||||
cat coveralls.json | jq --arg repo_token $COVERALLS_REPO_TOKEN '. += {repo_token: $repo_token}' > coveralls_full.json
|
||||
shell: bash
|
||||
|
||||
- name: 'Upload final report'
|
||||
|
Loading…
Reference in New Issue
Block a user