diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2947aa392b..e0e75695c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -104,8 +104,8 @@ jobs: - name: Push Helm Chart run: | helm registry login -u ftl0 -p "$PASSWORD" registry-1.docker.io - version="$(git describe --tags --abbrev=0)" - just chart release oci://registry-1.docker.io/ftl0/ftl-charts "$version" + version="$(git describe --tags --abbrev=0 | sed 's/v//')" + just chart release oci://registry-1.docker.io/ftl0 "$version" env: PASSWORD: ${{ secrets.FTL_DOCKER_PUSH_TOKEN }} - name: Push Docker Images diff --git a/charts/Chart.yaml b/charts/Chart.yaml index 4d3fedbb98..516600a0f6 100644 --- a/charts/Chart.yaml +++ b/charts/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -name: ftl +name: ftl-chart description: | A Helm chart for Kubernetes that deploys FTL home: https://github.com/TBD54566975/ftl @@ -12,4 +12,4 @@ dependencies: - name: harbor version: v1.15.1 repository: https://helm.goharbor.io - condition: harbor.enabled \ No newline at end of file + condition: harbor.enabled diff --git a/charts/Justfile b/charts/Justfile index 3cfdd291b1..210bc69fe2 100755 --- a/charts/Justfile +++ b/charts/Justfile @@ -13,7 +13,7 @@ package: helm package -u . -d output publish repo version: - helm push output/ftl-{{version}}.tgz {{repo}} + helm push output/ftl-chart-{{version}}.tgz {{repo}} release repo version: just set-version {{version}}