From bf683e5bf7125df16602d7c7fe12a68cf436e76c Mon Sep 17 00:00:00 2001 From: The-EDev Date: Fri, 16 Jun 2023 15:16:19 +0300 Subject: [PATCH] fixed syntax error --- .github/workflows/submit_coverage.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/submit_coverage.yml b/.github/workflows/submit_coverage.yml index 2e420af81..8a94692f4 100644 --- a/.github/workflows/submit_coverage.yml +++ b/.github/workflows/submit_coverage.yml @@ -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'