2 Commits

Author SHA1 Message Date
lucasdpt
35ba1f1a5a fix: deploy
All checks were successful
semantic-release / release (push) Successful in 29s
2026-04-11 17:29:39 +02:00
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

@@ -65,13 +65,14 @@ jobs:
token: ${{ secrets.TOKEN }} token: ${{ secrets.TOKEN }}
github-server-url: ${{ inputs.server-url }} github-server-url: ${{ inputs.server-url }}
- name: Update Helm chart version - name: Update values
if: ${{ inputs.update-helm }} run: |
run: yq e '${{ inputs.helm-path }} = "${{ inputs.helm-version }}"' -i "${{ inputs.file-path }}" if [ "${{ inputs.update-helm }}" = "true" ]; then
yq e '${{ inputs.helm-path }} = "${{ inputs.helm-version }}"' -i "${{ inputs.file-path }}"
- name: Update image tag fi
if: ${{ inputs.update-image }} if [ "${{ inputs.update-image }}" = "true" ]; then
run: yq e '${{ inputs.image-path }} = "${{ inputs.image-version }}"' -i "${{ inputs.file-path }}" yq e '${{ inputs.image-path }} = "${{ inputs.image-version }}"' -i "${{ inputs.file-path }}"
fi
- name: Commit and push changes - name: Commit and push changes
run: | run: |