diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8ab31a2371..db7ce245ec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -248,6 +248,7 @@ jobs: version="$(git describe --tags --abbrev=0 | sed 's/v//')" just chart set-version "$version" cd .. + rm -rf charts/ cp -r .ftl/charts/ charts/ git add charts git commit -a -m "Update charts" diff --git a/deployment/Justfile b/deployment/Justfile index ddd5340382..e6bd78d329 100755 --- a/deployment/Justfile +++ b/deployment/Justfile @@ -73,7 +73,8 @@ apply: helm upgrade --install ftl ../charts -f values.yaml deploy-version version: setup-cluster - helm upgrade --install ftl oci://registry-1.docker.io/ftl0/ftl-chart --version={{version}} -f values-release.yaml + helm repo add ftl https://tbd54566975.github.io/ftl-charts --force-update + helm upgrade --install ftl ftl/ftl --version={{version}} -f values-release.yaml delete: helm uninstall ftl