actions-hugo/src/index.ts

11 lines
219 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 error ${e.message}`);
}
})();