From 68a34159b94ef4c82a5fa1199bbee142d04614e9 Mon Sep 17 00:00:00 2001 From: Eduardo Apolinario <653394+eapolinario@users.noreply.github.com> Date: Mon, 11 Mar 2024 18:08:34 -0700 Subject: [PATCH] Pin flyteconsole version in release process (#5037) Signed-off-by: Eduardo Apolinario Co-authored-by: Eduardo Apolinario --- script/release.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/script/release.sh b/script/release.sh index 45d31f53b9..c6773e3040 100755 --- a/script/release.sh +++ b/script/release.sh @@ -3,7 +3,10 @@ set -ex FLYTEKIT_TAG=$(curl --silent "https://api.github.com/repos/flyteorg/flytekit/releases/latest" | jq -r .tag_name | sed 's/^v//') -FLYTECONSOLE_TAG=$(curl --silent "https://api.github.com/repos/flyteorg/flyteconsole/releases/latest" | jq -r .tag_name) +# The flyteconsole revamp is not released yet (we need "schedules" to be present before we can release it). In the meantime +# we are using the latest release (v1.10.3) as the tag for flyteconsole. +# FLYTECONSOLE_TAG=$(curl --silent "https://api.github.com/repos/flyteorg/flyteconsole/releases/latest" | jq -r .tag_name) +FLYTECONSOLE_TAG=v1.10.3 # bump latest release of flyte component in helm sed -i "s,tag:[^P]*# FLYTEADMIN_TAG,tag: ${VERSION} # FLYTEADMIN_TAG," ./charts/flyte/values.yaml