From a046942ca6fc19db143d87795bc6b875b2cfc33f Mon Sep 17 00:00:00 2001 From: Jansen Fuller Date: Fri, 29 May 2026 11:36:02 -0600 Subject: [PATCH 1/4] Fixing helm publish path --- .github/workflows/publish-helm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-helm.yml b/.github/workflows/publish-helm.yml index bbb3805..ddfcfb4 100644 --- a/.github/workflows/publish-helm.yml +++ b/.github/workflows/publish-helm.yml @@ -34,4 +34,4 @@ jobs: with: charts_dir: helm charts_repo_url: https://gothenburgbitfactory.org/taskchampion-sync-server/helm-chart - pages_index_path: helm-charts + pages_index_path: helm-chart From 0cb319c8e060bbe82f11f293ad34d3fdb18a0695 Mon Sep 17 00:00:00 2001 From: Jansen Fuller Date: Fri, 29 May 2026 11:44:45 -0600 Subject: [PATCH 2/4] Fixing install dir for helm chart --- .github/workflows/publish-helm.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish-helm.yml b/.github/workflows/publish-helm.yml index ddfcfb4..403ef4c 100644 --- a/.github/workflows/publish-helm.yml +++ b/.github/workflows/publish-helm.yml @@ -33,5 +33,4 @@ jobs: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" with: charts_dir: helm - charts_repo_url: https://gothenburgbitfactory.org/taskchampion-sync-server/helm-chart - pages_index_path: helm-chart + install_dir: helm-chart From 463adbef6bce476f72092dface8e5c24e2d7406e Mon Sep 17 00:00:00 2001 From: Jansen Fuller Date: Fri, 29 May 2026 14:33:54 -0600 Subject: [PATCH 3/4] Move index.yaml when publishing --- .github/workflows/publish-helm.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-helm.yml b/.github/workflows/publish-helm.yml index 403ef4c..c7bfb6c 100644 --- a/.github/workflows/publish-helm.yml +++ b/.github/workflows/publish-helm.yml @@ -33,4 +33,8 @@ jobs: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" with: charts_dir: helm - install_dir: helm-chart + + - name: Move index.yaml to helm-chart folder + run: | + git checkout gh-pages + mv -f index.yaml ./helm-chart/index.yaml From f7ecbe39acd44dfcaa36adf50c5bd44eba3cdf9e Mon Sep 17 00:00:00 2001 From: Jansen Fuller Date: Fri, 29 May 2026 20:38:34 +0000 Subject: [PATCH 4/4] Add git commit and push for index.yaml move --- .github/workflows/publish-helm.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-helm.yml b/.github/workflows/publish-helm.yml index c7bfb6c..42bf6c2 100644 --- a/.github/workflows/publish-helm.yml +++ b/.github/workflows/publish-helm.yml @@ -38,3 +38,5 @@ jobs: run: | git checkout gh-pages mv -f index.yaml ./helm-chart/index.yaml + git commit -m "Moving index.yaml" + git push