From 71cd0a0aabf221b52436daa2fcd163b2ee50b497 Mon Sep 17 00:00:00 2001 From: lucasdpt Date: Sat, 11 Apr 2026 17:11:57 +0200 Subject: [PATCH] fix: try to fix argocd deploy --- .gitea/workflows/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index d3a1766..5b19118 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -66,11 +66,11 @@ jobs: github-server-url: ${{ inputs.server-url }} - name: Update Helm chart version - if: ${{ inputs.update-helm }} + if: ${{ inputs.update-helm == 'true' }} run: yq e '${{ inputs.helm-path }} = "${{ inputs.helm-version }}"' -i "${{ inputs.file-path }}" - name: Update image tag - if: ${{ inputs.update-image }} + if: ${{ inputs.update-image == 'true' }} run: yq e '${{ inputs.image-path }} = "${{ inputs.image-version }}"' -i "${{ inputs.file-path }}" - name: Commit and push changes