1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-08 21:51:14 +02:00

chore: build dist release-please-action (#116)

This commit is contained in:
google-github-actions-bot
2020-11-25 15:25:18 -06:00
committed by GitHub
parent 369a402914
commit cfd3483816

4
dist/index.js vendored
View File

@@ -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