Files
werf-actions/src/install.ts
Alexey Igrychev fe3767b155 Let It Go
2020-05-25 23:52:36 +01:00

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()