Allow to mark the published github release as latest (#135)

* Allow to mark the published github release as latest

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L
2023-03-24 11:56:51 +01:00
committed by GitHub
parent be16258da8
commit 31bbcdca8b
3 changed files with 20 additions and 0 deletions
+11
View File
@@ -33,6 +33,7 @@ Usage: $(basename "$0") <options>
-n, --install-dir The Path to install the cr tool
-i, --install-only Just install the cr tool
-s, --skip-packaging Skip the packaging step (run your own packaging before using the releaser)
-l, --mark-as-latest Mark the created GitHub release as 'latest' (default: true)
EOF
}
@@ -45,6 +46,7 @@ main() {
local install_dir=
local install_only=
local skip_packaging=
local mark_as_latest=true
parse_command_line "$@"
@@ -171,6 +173,12 @@ parse_command_line() {
shift
fi
;;
-l|--mark-as-latest)
if [[ -n "${2:-}" ]]; then
mark_as_latest="$2"
shift
fi
;;
*)
break
;;
@@ -272,6 +280,9 @@ release_charts() {
if [[ -n "$config" ]]; then
args+=(--config "$config")
fi
if [[ "$mark_as_latest" = false ]]; then
args+=(--make-release-latest=false)
fi
echo 'Releasing charts...'
cr upload "${args[@]}"