Use console.log

This commit is contained in:
khai96_ 2020-05-09 20:52:27 +07:00
parent c3e0d9f20f
commit 0fa2b7d3a5

View File

@ -1,4 +1,4 @@
import { setFailed, getState, debug } from '@actions/core'
import { setFailed, getState } from '@actions/core'
import getInputs from './inputs'
import setOutputs from './outputs'
import installPnpm from './install-pnpm'
@ -6,7 +6,7 @@ import pnpmInstall from './pnpm-install'
async function main() {
const isPost = getState('isPost')
debug(JSON.stringify(isPost))
console.log({ isPost })
if (isPost) {
return
}