Skip to content

Commit

Permalink
Pin flyteconsole version in release process (#5037)
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Apolinario <[email protected]>
Co-authored-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario and eapolinario authored Mar 12, 2024
1 parent 1d2e305 commit 68a3415
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion script/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 68a3415

Please sign in to comment.