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