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
|
# access to secrets
|
||||||
on:
|
on:
|
||||||
workflow_run:
|
workflow_run:
|
||||||
workflows: ["Build and test"]
|
workflows: [Build and test]
|
||||||
types:
|
types: [completed]
|
||||||
- completed
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
||||||
@ -35,7 +34,8 @@ jobs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: 'Generate full report'
|
- 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
|
shell: bash
|
||||||
|
|
||||||
- name: 'Upload final report'
|
- name: 'Upload final report'
|
||||||
|
Loading…
Reference in New Issue
Block a user