mirror of
https://github.com/softprops/action-gh-release.git
synced 2025-05-11 19:04:20 +00:00
Keep default behaviour the same by defaulting to true for make_latest.
This commit is contained in:
parent
54f9238879
commit
4c0e20a554
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ export const parseConfig = (env: Env): Config => {
|
|||
env.INPUT_DISCUSSION_CATEGORY_NAME || undefined,
|
||||
input_generate_release_notes: env.INPUT_GENERATE_RELEASE_NOTES == "true",
|
||||
input_append_body: env.INPUT_APPEND_BODY == "true",
|
||||
input_make_latest: env.INPUT_MAKE_LATEST == "true" ? "true" : "false",
|
||||
input_make_latest: env.INPUT_MAKE_LATEST ? env.INPUT_MAKE_LATEST : "true",
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue