fixed syntax error

This commit is contained in:
The-EDev 2023-06-16 15:16:19 +03:00
parent c365201d4f
commit bf683e5bf7
No known key found for this signature in database
GPG Key ID: 51C45DC0C413DCD9
1 changed files with 4 additions and 4 deletions

View File

@ -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'