11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
|
import * as core from '@actions/core';
|
||
|
import * as main from './main';
|
||
|
|
||
|
(async (): Promise<void> => {
|
||
|
try {
|
||
|
await main.run();
|
||
|
} catch (e) {
|
||
|
core.setFailed(`Action failed with "${e}"`);
|
||
|
}
|
||
|
})();
|