Skip to content

Commit c201afc

Browse files
committed
Fix output
1 parent a7605bb commit c201afc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/reports-group/codacy-uploader/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,5 @@ runs:
9292
const {REPORTS, METADATA} = process.env;
9393
9494
const metadata = JSON.parse(METADATA);
95-
core.setOutput('group', metadata.path.split(',').join('\n')); // Trusted path as it comes from trusted metadata (=from `reports-group/load-metadata`)
95+
core.setOutput('groups', metadata.path.split(',').join('\n')); // Trusted path as it comes from trusted metadata (=from `reports-group/load-metadata`)
9696
core.setOutput('reports', REPORTS.split(',').join('\n')); // Trusted path, see `build-uploader-options` step

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
id: unit-tests-coverage-group
8484
uses: ./.github/actions/reports-group/create
8585
with:
86-
name: unit-tests-php${{ matrix.php-version }}
86+
name: unit-tests
8787
format: clover
8888
files: build/coverage-phpunit/unit.clover
8989
flags: |
@@ -97,7 +97,7 @@ jobs:
9797
id: functional-tests-coverage-group
9898
uses: ./.github/actions/reports-group/create
9999
with:
100-
name: functional-tests-php${{ matrix.php-version }}
100+
name: functional-tests
101101
format: clover
102102
files: |
103103
build/coverage-phpunit/functional.clover

0 commit comments

Comments
 (0)