mirror of
https://github.com/werf/actions.git
synced 2026-02-05 02:46:23 +03:00
14 lines
236 B
TypeScript
14 lines
236 B
TypeScript
import * as core from '@actions/core'
|
|
import {Manager} from './manager'
|
|
|
|
async function run(): Promise<void> {
|
|
try {
|
|
const m = new Manager()
|
|
await m.Install()
|
|
} catch (error) {
|
|
core.setFailed(error.message)
|
|
}
|
|
}
|
|
|
|
run()
|