From ed9a134aced41b5f19c53132db2aa677ee9bad44 Mon Sep 17 00:00:00 2001 From: Will Molloy Date: Sun, 21 Apr 2024 14:36:56 +1200 Subject: [PATCH] Add codecov token which is now required --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59ac7c9..590130e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,7 @@ jobs: with: flags: unit-tests-${{ matrix.os }} fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }} integration-test: runs-on: ${{ matrix.os }} @@ -59,6 +60,7 @@ jobs: with: flags: integration-tests-${{ matrix.os }} fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }} release: needs: [ build, integration-test ] @@ -78,4 +80,4 @@ jobs: uses: softprops/action-gh-release@v2.0.4 with: tag_name: ${{ steps.version.outputs.version_tag }} - generate_release_notes: true \ No newline at end of file + generate_release_notes: true