fix: Wrap an entrypoint by async to handle exceptions correctly (#363)
* fix: add return type Co-authored-by: Shohei Ueda <30958501+peaceiris@users.noreply.github.com>
This commit is contained in:
parent
998d85162e
commit
54af4c1320
1 changed files with 7 additions and 5 deletions
|
@ -1,8 +1,10 @@
|
|||
import * as core from '@actions/core';
|
||||
import * as main from './main';
|
||||
|
||||
(async (): Promise<void> => {
|
||||
try {
|
||||
main.run();
|
||||
await main.run();
|
||||
} catch (e) {
|
||||
core.setFailed(`Action failed with error ${e}`);
|
||||
core.setFailed(`Action failed with error ${e.message}`);
|
||||
}
|
||||
})();
|
||||
|
|
Loading…
Reference in a new issue