Skip to content

Commit

Permalink
Update deploy_helmfile.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmrtvy authored Oct 29, 2024
1 parent d481f18 commit 0147aee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ jobs:
- name: Inject release version to the helm chart
if: inputs.revision != ''
run: |
release=$(git tag --contains ${{ inputs.revision }})
release=$(git tag --contains "${{ inputs.revision }}")
find . -name "Chart.yaml" | while IFS= read -r file; do
yq -i '.appVersion = "'"$release"'"-${{ inputs.revision }}' "$file"
yq -i '.appVersion = '"$release"'-${{ inputs.revision }}' "$file"
done
- name: helmfile ${{ inputs.helmfileCommand }}
Expand Down

0 comments on commit 0147aee

Please sign in to comment.