diff --git a/gui/.github/workflows/build.yml b/gui/.github/workflows/build.yml index d5012e37390..611102fae8f 100644 --- a/gui/.github/workflows/build.yml +++ b/gui/.github/workflows/build.yml @@ -88,8 +88,14 @@ jobs: - name: Generate coverage report id: coverage uses: actions-rs/grcov@v0.1 + - name: list all /tmp files + run: ls -la /tmp + - name: show the coverage report + run: cat ${{ steps.coverage.outputs.report }} + - name: copy the file to local fs + run: cp ${{ steps.coverage.outputs.report }} ./lcov.info - name: Upload coverage report uses: codecov/codecov-action@v1.0.2 with: - token: 70c0d44d-6ee2-4f23-b16b-0ed801149f8a - file: ${{ steps.coverage.outputs.report }} + token: ${{ secrets.CODECOV_TOKEN }} + file: ./lcov.info