feat: try to fix
All checks were successful
semantic-release / release (push) Successful in 28s

This commit is contained in:
lucasdpt
2026-04-21 14:26:05 +02:00
parent 35ba1f1a5a
commit 874e8ec4b8
2 changed files with 5 additions and 5 deletions

View File

@@ -67,10 +67,10 @@ jobs:
- name: Update values
run: |
if [ "${{ inputs.update-helm }}" = "true" ]; then
if [ "${{ inputs.update-helm }}" = "true" ] && [ -n "${{ inputs.helm-version }}" ] && [ -n "${{ inputs.helm-path }}" ]; then
yq e '${{ inputs.helm-path }} = "${{ inputs.helm-version }}"' -i "${{ inputs.file-path }}"
fi
if [ "${{ inputs.update-image }}" = "true" ]; then
if [ "${{ inputs.update-image }}" = "true" ] && [ -n "${{ inputs.image-version }}" ] && [ -n "${{ inputs.image-path }}" ]; then
yq e '${{ inputs.image-path }} = "${{ inputs.image-version }}"' -i "${{ inputs.file-path }}"
fi