diff --git a/src/index.ts b/src/index.ts index c8eaa19..94fa742 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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 }