Skip to content

Commit 16b2ef1

Browse files
committed
fix
1 parent 212964e commit 16b2ef1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -509,15 +509,15 @@ jobs:
509509
./.github/actions/codecov-fix.sh
510510
- name: Combine all fixed LCOV files
511511
run: |
512-
echo "" > ./combined-integration.lcov
512+
echo "" > ./combined-integration-${{ matrix.db }}.lcov
513513
for f in ./packages/*/coverage/lcov.fixed.info; do
514-
cat "$f" >> ./combined-integration.lcov
514+
cat "$f" >> ./combined-integration-${{ matrix.db }}.lcov
515515
done
516516
- name: Upload coverage artifact
517517
uses: actions/upload-artifact@v4
518518
with:
519-
name: coverage-integration
520-
path: ./combined-integration.lcov
519+
name: coverage-integration-${{ matrix.db }}
520+
path: ./combined-integration-${{ matrix.db }}.lcov
521521

522522
integration-smoke:
523523
needs: [latest-tag-sha, build-cubestore, build-native-linux]

0 commit comments

Comments
 (0)