Let It Go

This commit is contained in:
Alexey Igrychev
2020-05-25 14:27:28 +01:00
commit fe3767b155
34 changed files with 199960 additions and 0 deletions

13
src/install.ts Normal file
View File

@@ -0,0 +1,13 @@
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()