From d208a063df37e7782ffeb8a1b243301a85bd4b05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Veiga?= Date: Tue, 16 Apr 2024 15:12:38 +0200 Subject: [PATCH] fix: update token in ci ga action --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5502a5a..1b002fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,10 +12,13 @@ jobs: uses: einride/sage/actions/setup@master - name: Make - run: make + run: + | echo $(env) + | make - name: Report Code Coverage uses: codecov/codecov-action@v4 with: file: .sage/build/go/coverage/go-test.txt fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }}