actions-gh-pages/src/index.ts

11 lines
207 B
TypeScript
Raw Normal View History

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}"`);
}
})();