Skip to content

Commit

Permalink
🩹Fix release creation on publish - always sets new releases as latest
Browse files Browse the repository at this point in the history
  • Loading branch information
lord-haffi committed May 16, 2024
1 parent e6d1de3 commit b96d2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bo4e_schemas_create_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def create_release(
"body": release_infos["body"],
"draft": False,
"prerelease": release_infos["prerelease"],
"make_latest": str(is_latest),
"make_latest": str(is_latest).lower(),
},
)
ensure_status_code(response)
Expand Down

0 comments on commit b96d2a3

Please sign in to comment.