CI: join codecov array flags, instead of accessing it directly
Commit:
https://github.com/vim/vim/commit/9a65a8c270f3f101b59b63f5252c7e96549bed2d
Author: rhysd <
lin9...@yahoo.co.jp>
Date: Tue Nov 19 13:46:17 2024 +0100
CI: join codecov array flags, instead of accessing it directly
closes:
https://github.com/vim/vim/issues/16082
Signed-off-by: rhysd <
lin9...@yahoo.co.jp>
Signed-off-by: Christian Brabandt <
c...@256bit.org>
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2f285ff2d..f67f97cc9 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