1 Commits

Author SHA1 Message Date
lucasdpt
71cd0a0aab fix: try to fix argocd deploy
All checks were successful
semantic-release / release (push) Successful in 31s
2026-04-11 17:12:04 +02:00

View File

@@ -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