From 5897fdb4a48af0ef4c2fadc7d8f2a953466010be Mon Sep 17 00:00:00 2001 From: gfanton <8671905+gfanton@users.noreply.github.com> Date: Wed, 19 Jun 2024 15:50:06 +0200 Subject: [PATCH] fix: yaml Signed-off-by: gfanton <8671905+gfanton@users.noreply.github.com> --- .github/workflows/test_template.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_template.yml b/.github/workflows/test_template.yml index 512d7a94b1a..8cd41b6483a 100644 --- a/.github/workflows/test_template.yml +++ b/.github/workflows/test_template.yml @@ -51,23 +51,21 @@ jobs: go tool covdata textfmt -v 1 -i=$TXTARCOVERDIR -o txtarcoverage.out - name: Upload go coverage to Codecov - working-directory: ${{ inputs.modulepath }} uses: codecov/codecov-action@v4 with: disable_search: true fail_ci_if_error: true - file: ./gocoverage.out + file: ${{ inputs.modulepath }}/gocoverage.out flags: ${{ inputs.modulepath }} token: ${{ secrets.codecov-token }} verbose: true - name: Upload txtar coverage to Codecov - working-directory: ${{ inputs.modulepath }} uses: codecov/codecov-action@v4 with: disable_search: true fail_ci_if_error: true - file: ./txtarcoverage.out + file: ${{ inputs.modulepath }}/txtarcoverage.out flags: ${{ inputs.modulepath }}/txtar token: ${{ secrets.codecov-token }} verbose: true