From 1c6b4985a804f66645178ac67c569de0512bba83 Mon Sep 17 00:00:00 2001 From: Manas Jayanth <3097018+ManasJayanth@users.noreply.github.com> Date: Mon, 20 May 2024 20:40:01 +0530 Subject: [PATCH] wip print artifacts ids --- action.yml | 3 +-- dist/index.js | 2 +- index.ts | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) 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) {