We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5c775d commit 350c4e6Copy full SHA for 350c4e6
main.js
@@ -193,7 +193,7 @@ async function main() {
193
core.setOutput("found_artifact", true)
194
core.info('==> (found) Artifacts')
195
for (const artifact of artifacts) {
196
- const size = filesize.filesize(artifact.size_in_bytes, { base: 10 })
+ const size = filesize(artifact.size_in_bytes, { base: 10 })
197
core.info(`\t==> Artifact:`)
198
core.info(`\t==> ID: ${artifact.id}`)
199
core.info(`\t==> Name: ${artifact.name}`)
@@ -263,7 +263,7 @@ async function main() {
263
264
function setExitMessage(ifNoArtifactFound, message) {
265
core.setOutput("found_artifact", false)
266
-
+
267
switch (ifNoArtifactFound) {
268
case "fail":
269
core.setFailed(message)
0 commit comments