Skip to content

Commit b8d3aeb

Browse files
authored
Refactor CI for forked repositories - Fix (yoanm#126)
1 parent 95650bd commit b8d3aeb

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/actions/reports-group/create-action/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/create-action/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/find-action/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/find-action/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/load-metadata-action/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/load-metadata-action/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/node-sdk/src/outputs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const core = require('@actions/core'); // @TODO move to 'imports from' when move
55
*/
66
export function bindFrom(outputs) {
77
Object.entries(outputs).map(([outputName, outputValue]) => {
8-
core.debug('Output ' + outputName + '=' +outputValue);
8+
core.debug('Output ' + outputName + '=' +JSON.stringify(outputValue));
99
core.setOutput(outputName, outputValue);
1010
});
1111
}

0 commit comments

Comments
 (0)