Skip to content

Commit

Permalink
use github action for uploading codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
mat-if committed Oct 22, 2024
1 parent 6e09087 commit 348067a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,13 @@ jobs:
exit 1
fi
- name: Upload coverage
# - name: Upload coverage
# if: github.repository == 'iron-fish/ironfish'
# run: CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }} ROOT_PATH=$GITHUB_WORKSPACE/ yarn coverage:upload

- name: Upload coverage v2
if: github.repository == 'iron-fish/ironfish'
run: CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }} ROOT_PATH=$GITHUB_WORKSPACE/ yarn coverage:upload
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 348067a

Please sign in to comment.