diff --git a/action.yml b/action.yml index 95ae5d4..82bcd6d 100644 --- a/action.yml +++ b/action.yml @@ -22,8 +22,7 @@ inputs: artifacts are later used by, `bundle-npm-tarball-mode` required: false bundle-npm-artifacts-mode: - description: - Runs a steps that bundle artifacts for release the app to NPM. + description: Runs a steps that bundle artifacts for release the app to NPM. required: false artifact-ids: description: diff --git a/dist/index.js b/dist/index.js index 74f9ff3..a9b3a04 100644 --- a/dist/index.js +++ b/dist/index.js @@ -180858,7 +180858,7 @@ function prepareNPMArtifacts() { }); } function bundleNPMArtifacts() { - console.log(artifactIDs); + core.setOutput("artifactIDS", artifactIDs); } if (prepareNPMArtifactsMode) { prepareNPMArtifacts(); diff --git a/index.ts b/index.ts index ab6c826..245224b 100644 --- a/index.ts +++ b/index.ts @@ -160,7 +160,7 @@ async function prepareNPMArtifacts() { } function bundleNPMArtifacts() { - console.log(artifactIDs); + core.setOutput("artifactIDS", artifactIDs); } if (prepareNPMArtifactsMode) {