From da243f5c3f4328c0ef66a2fe0a40af5d0fe40758 Mon Sep 17 00:00:00 2001 From: dutchie031 Date: Thu, 30 Jul 2026 11:08:59 +0200 Subject: [PATCH] updated helm and deployment --- .gitea/workflows/update-docs.yml | 34 +++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/update-docs.yml b/.gitea/workflows/update-docs.yml index aef7c6c..6ba91a0 100644 --- a/.gitea/workflows/update-docs.yml +++ b/.gitea/workflows/update-docs.yml @@ -92,15 +92,25 @@ jobs: with: fetch-depth: 0 - - name: 'Deploy' - uses: deliverybot/helm@v1 - with: - release: spearhead-docs - namespace: spearhead-docs - chart: '.helm' - value-files: >- - [ - ".helm/values.yaml" - ] - env: - KUBECONFIG_FILE: ${{ secrets.KUBECONFIG_CONTENT }} + - name: Set up Kubeconfig + run: | + echo "${{ secrets.KUBECONFIG_CONTENT }}" > kubeconfig + export KUBECONFIG=kubeconfig + kubectl config view + + - name: Check Helm version + run: | + helm version + + # - name: 'Deploy' + # uses: deliverybot/helm@v1 + # with: + # release: spearhead-docs + # namespace: spearhead-docs + # chart: '.helm' + # value-files: >- + # [ + # ".helm/values.yaml" + # ] + # env: + # KUBECONFIG_FILE: ${{ secrets.KUBECONFIG_CONTENT }}