mirror of
https://gitea.com/actions/gitea-release-action.git
synced 2024-11-10 02:11:07 +07:00
feat: add body_path support
This commit is contained in:
parent
0a1d8705a2
commit
1def5c9f21
10
main.js
10
main.js
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user