Skip to content

Commit c5af940

Browse files
committed
Remove redundant notification
`uploadArtifact` already prints a more detailed message.
1 parent d5429ee commit c5af940

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26319,8 +26319,6 @@ var main = async () => {
2631926319
const result = await client.uploadArtifact(core.getInput("artifact_name"), [outputFile], ".");
2632026320
if (result.failedItems.length > 0) {
2632126321
throw "Artifact was not uploaded successfully.";
26322-
} else {
26323-
core.info(`Diagram uploaded under name ${result.artifactName}`);
2632426322
}
2632526323
core.endGroup();
2632626324
}

src/index.jsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ const main = async () => {
9292
const result = await client.uploadArtifact(core.getInput('artifact_name'), [outputFile], '.')
9393
if (result.failedItems.length > 0) {
9494
throw 'Artifact was not uploaded successfully.'
95-
} else {
96-
core.info(`Diagram uploaded under name ${result.artifactName}`)
9795
}
9896
core.endGroup()
9997
}

0 commit comments

Comments
 (0)