Complete basic

This commit is contained in:
khai96_
2020-05-08 13:06:16 +07:00
parent 21f3fd8b57
commit 7d62586afe
3 changed files with 26 additions and 11 deletions

12
src/index.ts Normal file
View File

@ -0,0 +1,12 @@
import { setFailed } from '@actions/core'
import getInputs from './inputs'
import install from './install'
const inputs = getInputs()
install(inputs).then(() => {
console.log('Installation Completed!')
}).catch(error => {
console.error(error)
setFailed(error)
})