feat: add body_path support

This commit is contained in:
Akkuman 2023-12-04 09:43:35 +08:00
parent 0a1d8705a2
commit 1def5c9f21

10
main.js
View File

@ -11,7 +11,7 @@ async function run() {
try {
const server_url = core.getInput("server_url")
const name = core.getInput("name")
const body = core.getInput("body")
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"))
@ -128,4 +128,10 @@ async function uploadFiles(client, owner, repo, release_id, all_files) {
}
}
run();
function getReleaseBody(body, body_path) {
return (
(body_path && fs.readFileSync(body_path).toString("utf8")) || body
)
}
run()