From 40e2735292284779c677897f8051f13d19b96a48 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 29 Mar 2024 14:27:14 -0400 Subject: [PATCH] BUG: fixed token bug Fixed token bug and windows execution bug. --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c8b18ebc..a19c6b42 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -67,12 +67,14 @@ jobs: env: COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_PARALLEL: true - run: curl -sL https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.zip | zcat > ./coveralls.exe && ./coveralls.exe + run: | + curl -sL https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.zip | zcat > ./coveralls.exe + ./coveralls.exe - name: Report Coveralls (macOS) if: startsWith(matrix.os, 'macos') env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_PARALLEL: true run: | brew tap coverallsapp/coveralls --quiet