From: rhysd Date: Tue, 19 Nov 2024 12:46:17 +0000 (+0100) Subject: CI: join codecov array flags, instead of accessing it directly X-Git-Tag: v9.1.0874~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a65a8c270f3f101b59b63f5252c7e96549bed2d;p=thirdparty%2Fvim.git CI: join codecov array flags, instead of accessing it directly closes: #16082 Signed-off-by: rhysd Signed-off-by: Christian Brabandt --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f285ff2da..f67f97cc90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -297,7 +297,7 @@ jobs: if: matrix.coverage uses: codecov/codecov-action@v5 with: - flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ matrix.extra }} + flags: linux,${{ matrix.features }}-${{ matrix.compiler }}-${{ join(matrix.extra, '-') }} token: ${{ secrets.CODECOV_TOKEN }} - name: ASan logs