2020-01-25 12:42:32 +09:00
|
|
|
import * as core from '@actions/core';
|
2020-01-18 10:29:06 +09:00
|
|
|
import * as main from './main';
|
2019-09-21 10:41:21 +09:00
|
|
|
|
2020-01-25 12:42:32 +09:00
|
|
|
try {
|
|
|
|
|
main.run();
|
|
|
|
|
} catch (e) {
|
|
|
|
|
core.setFailed(`Action failed with error ${e}`);
|
|
|
|
|
}
|