Skip to content

Commit 8154397

Browse files
author
Yevhenii Afanasiev
authored
fix: exit on error (#6)
Signed-off-by: yafanasiev <[email protected]>
1 parent 24f400f commit 8154397

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ async function pollForPackageCompletion(
205205
core.info(`Checking package status [${statusChecks}]: ${status}`)
206206

207207
if (status === 'failure') {
208-
core.error('Package build failed')
208+
core.setFailed('Package build failed')
209209
core.error(response.data.data.attributes.notes)
210210
finalized = true
211211
break
@@ -249,7 +249,7 @@ async function publishPackage(
249249
if (status === 200) {
250250
core.info('Package was successfully published.')
251251
} else {
252-
core.error(
252+
core.setFailed(
253253
'Publishing failed. Please go to app page and publish it manually.'
254254
)
255255
}

0 commit comments

Comments
 (0)