Skip to content

Commit 2c47ca5

Browse files
committed
fix: create release make_latest must be string
1 parent 9e8e834 commit 2c47ca5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Installs the given GardenLinux Python library
44
inputs:
55
version:
66
description: GardenLinux Python library version
7-
default: "0.10.1"
7+
default: "0.10.2"
88
python_version:
99
description: Python version to setup
1010
default: "3.13"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "gardenlinux"
3-
version = "0.10.1"
3+
version = "0.10.2"
44
description = "Contains tools to work with the features directory of gardenlinux, for example deducting dependencies from feature sets or validating cnames"
55
authors = ["Garden Linux Maintainers <contact@gardenlinux.io>"]
66
license = "Apache-2.0"

src/gardenlinux/github/release/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def create_github_release(owner, repo, tag, commitish, latest, body):
2727
"body": body,
2828
"draft": False,
2929
"prerelease": False,
30-
"make_latest": latest
30+
"make_latest": "true" if latest else "false"
3131
}
3232

3333
response = requests.post(

0 commit comments

Comments
 (0)