mirror of
https://gitea.com/actions/gitea-release-action.git
synced 2024-11-10 02:11:07 +07:00
fix: var type
This commit is contained in:
parent
bfd657c820
commit
ef409f92f8
4
main.js
4
main.js
@ -12,8 +12,8 @@ async function run() {
|
||||
const name = core.getInput("name")
|
||||
const body = core.getInput("body")
|
||||
const tag_name = core.getInput("tag_name")
|
||||
const draft = core.getInput("draft")
|
||||
const prerelease = core.getInput("prerelease")
|
||||
const draft = Boolean(core.getInput("draft"))
|
||||
const prerelease = Boolean(core.getInput("prerelease"))
|
||||
const files = core.getInput("files")
|
||||
const repository = core.getInput("repository")
|
||||
const token = core.getInput("token")
|
||||
|
Loading…
Reference in New Issue
Block a user