From 90386c0dc92f4c8947ec13d1650e6766bd3be7e0 Mon Sep 17 00:00:00 2001 From: Stuart Douglas Date: Mon, 14 Oct 2024 11:47:55 +1100 Subject: [PATCH] fix: copy to correct dir (#3102) --- .github/workflows/release.yml | 1 + deployment/Justfile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8ab31a237..db7ce245e 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 ddd534038..e6bd78d32 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