Skip to content

Commit

Permalink
wip print artifacts ids
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasJayanth committed May 20, 2024
1 parent a945a05 commit 1c6b498
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -180858,7 +180858,7 @@ function prepareNPMArtifacts() {
});
}
function bundleNPMArtifacts() {
console.log(artifactIDs);
core.setOutput("artifactIDS", artifactIDs);
}
if (prepareNPMArtifactsMode) {
prepareNPMArtifacts();
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ async function prepareNPMArtifacts() {
}

function bundleNPMArtifacts() {
console.log(artifactIDs);
core.setOutput("artifactIDS", artifactIDs);
}

if (prepareNPMArtifactsMode) {
Expand Down

0 comments on commit 1c6b498

Please sign in to comment.