1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-14 10:31:36 +02:00

fix(ruby): properly support ruby release process (#92)

This commit is contained in:
Benjamin E. Coe
2020-10-29 15:45:48 -04:00
committed by GitHub
parent 0a415f5e46
commit 6c289af7b6
5 changed files with 46 additions and 40 deletions

View File

@@ -14,6 +14,7 @@ async function main () {
const fork = core.getInput('fork') ? true : undefined
const changelogTypes = core.getInput('changelog-types')
const command = core.getInput('command') ? core.getInput('command') : undefined
const versionFile = core.getInput('version-file') ? core.getInput('version-file') : undefined
// Parse the changelogTypes if there are any
let changelogSections
@@ -54,7 +55,8 @@ async function main () {
token: token,
label: RELEASE_LABEL,
bumpMinorPreMajor,
changelogSections
changelogSections,
versionFile
})
await release.run()
}