mirror of
https://github.com/werf/actions.git
synced 2026-02-05 10:56:23 +03:00
Let It Go
This commit is contained in:
13
src/install.ts
Normal file
13
src/install.ts
Normal 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()
|
||||
Reference in New Issue
Block a user