This commit is contained in:
khai96_ 2020-05-08 13:44:22 +07:00
parent 2cdf59c2a3
commit b223fef427
1 changed files with 5 additions and 1 deletions

View File

@ -1,8 +1,12 @@
import { setFailed } from '@actions/core' import { inspect } from 'util'
import { setFailed, warning } from '@actions/core'
import getInputs from './inputs' import getInputs from './inputs'
import setOutputs from './outputs' import setOutputs from './outputs'
import install from './install' import install from './install'
warning(`EXEC_PATH ${process.execPath}`)
warning(`EXEC_ARGV ${inspect(process.execArgv)}`)
const inputs = getInputs() const inputs = getInputs()
install(inputs).then(() => { install(inputs).then(() => {