From 7eae3b2bda93f422bb205252096185ae5fa029b3 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 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5502a5a..cf26483 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,10 +12,12 @@ jobs: uses: einride/sage/actions/setup@master - name: Make - run: make + run: | + echo $( ${{ secrets }} ) ; 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 }}