Fix warning in install.ts

This commit is contained in:
Shivam Mathur
2021-03-03 10:28:50 +05:30
parent e9a7adef28
commit 15b99e2a8d
2 changed files with 11 additions and 3 deletions

6
dist/index.js vendored
View File

@ -2142,7 +2142,11 @@ async function run() {
}
exports.run = run;
// call the run function
run();
(async () => {
await run();
})().catch(error => {
core.setFailed(error.message);
});
/***/ }),