File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ sphinx-rtd-theme = "^3.0.2"
3939gl-cname = " gardenlinux.features.cname_main:main"
4040gl-features-parse = " gardenlinux.features.__main__:main"
4141gl-flavors-parse = " gardenlinux.flavors.__main__:main"
42+ gl-gh-release = " gardenlinux.github.release_main:main"
4243gl-oci = " gardenlinux.oci.__main__:main"
4344gl-s3 = " gardenlinux.s3.__main__:main"
4445
Original file line number Diff line number Diff line change 153153
154154S3_DOWNLOADS_DIR = Path (os .path .dirname (__file__ )) / ".." / "s3_downloads"
155155
156- GLVD_BASE_URL = "https://glvd.ingress.glvd.gardnlinux.shoot.canary.k8s-hana.ondemand.com/v1"
157156GL_DEB_REPO_BASE_URL = "https://packages.gardenlinux.io/gardenlinux"
157+ GLVD_BASE_URL = (
158+ "https://glvd.ingress.glvd.gardnlinux.shoot.canary.k8s-hana.ondemand.com/v1"
159+ )
158160
159161GARDENLINUX_GITHUB_RELEASE_BUCKET_NAME = "gardenlinux-github-releases"
160162
Original file line number Diff line number Diff line change 22
33from gardenlinux .logger import LoggerSetup
44
5- from .release import create_github_release , upload_to_github_release_page , write_to_release_id_file
5+ from .release import (
6+ create_github_release ,
7+ upload_to_github_release_page ,
8+ write_to_release_id_file ,
9+ )
610from .release_notes import create_github_release_notes
711
812LOGGER = LoggerSetup .get_logger ("gardenlinux.github" , "INFO" )
@@ -17,7 +21,7 @@ def main():
1721 create_parser .add_argument ("--repo" , default = "gardenlinux" )
1822 create_parser .add_argument ("--tag" , required = True )
1923 create_parser .add_argument ("--commit" , required = True )
20- create_parser .add_argument (' --latest' , action = ' store_true' , default = False )
24+ create_parser .add_argument (" --latest" , action = " store_true" , default = False )
2125 create_parser .add_argument ("--dry-run" , action = "store_true" , default = False )
2226
2327 upload_parser = subparsers .add_parser ("upload" )
You can’t perform that action at this time.
0 commit comments