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 63234be commit 924e1b2Copy full SHA for 924e1b2
dist/index.js
@@ -830,7 +830,11 @@ async function run () {
830
}
831
832
;(async () => {
833
- await run()
+ try {
834
+ await run()
835
+ } catch (error) {
836
+ Object(_actions_core__WEBPACK_IMPORTED_MODULE_0__.setFailed)(error)
837
+ }
838
})()
839
840
index.js
@@ -65,5 +65,9 @@ async function run () {
65
66
67
68
69
70
71
+ setFailed(error)
72
73
0 commit comments