mirror of
https://gitea.com/actions/gitea-release-action.git
synced 2024-11-21 17:49:38 +01:00
Fix parse bool bug
This commit is contained in:
parent
89861ccfb7
commit
6a4c0c7c03
1 changed files with 2 additions and 2 deletions
4
main.js
4
main.js
|
@ -15,8 +15,8 @@ async function run() {
|
|||
const name = core.getInput("name")
|
||||
const body = getReleaseBody(core.getInput("body"), core.getInput("body_path"))
|
||||
const tag_name = core.getInput("tag_name")
|
||||
const draft = Boolean(core.getInput("draft"))
|
||||
const prerelease = Boolean(core.getInput("prerelease"))
|
||||
const draft = core.getInput("draft") === 'true'
|
||||
const prerelease = core.getInput("prerelease") === 'true'
|
||||
const files = core.getInput("files")
|
||||
const repository = core.getInput("repository")
|
||||
const token = core.getInput("token")
|
||||
|
|
Loading…
Reference in a new issue