mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2025-05-05 23:15:27 +08:00
9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
import * as core from '@actions/core';
|
|
import * as main from './main';
|
|
|
|
try {
|
|
main.run();
|
|
} catch (e) {
|
|
core.setFailed(`Action failed with error ${e}`);
|
|
}
|