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