Skip to content

Commit

Permalink
chore: build dist release-please-action (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
google-github-actions-bot authored Nov 25, 2020
1 parent 5c27197 commit 61a8c13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3276,8 +3276,8 @@ const RELEASE_LABEL = 'autorelease: pending'
async function main () {
const bumpMinorPreMajor = Boolean(core.getInput('bump-minor-pre-major'))
// TODO(bcoe): remove this log line.
console.info(typeof core.getInput('clean'), core.getInput('clean'));
const clean = core.getInput('clean') === 'false' ? false : true
console.info(typeof core.getInput('clean'), core.getInput('clean'))
const clean = core.getInput('clean') !== 'false'
const monorepoTags = Boolean(core.getInput('monorepo-tags'))
const packageName = core.getInput('package-name')
const path = core.getInput('path') ? core.getInput('path') : undefined
Expand Down

0 comments on commit 61a8c13

Please sign in to comment.