From cfd3483816bd6b771a2b73753149e262c125d07e Mon Sep 17 00:00:00 2001 From: google-github-actions-bot <72759630+google-github-actions-bot@users.noreply.github.com> Date: Wed, 25 Nov 2020 15:25:18 -0600 Subject: [PATCH] chore: build dist release-please-action (#116) --- dist/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 61fa451..9553880 100644 --- a/dist/index.js +++ b/dist/index.js @@ -3275,7 +3275,9 @@ const RELEASE_LABEL = 'autorelease: pending' async function main () { const bumpMinorPreMajor = Boolean(core.getInput('bump-minor-pre-major')) - const clean = core.getInput('clean') ? true : undefined + // TODO(bcoe): remove this log line. + console.info(typeof core.getInput('clean'), core.getInput('clean')); + const clean = core.getInput('clean') === 'false' ? false : true const monorepoTags = Boolean(core.getInput('monorepo-tags')) const packageName = core.getInput('package-name') const path = core.getInput('path') ? core.getInput('path') : undefined