Skip to content

Commit

Permalink
wrap yq eval in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-kev committed Jul 21, 2023
1 parent 35c3928 commit b10b3f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Update image version in fleet kustomization.yaml
uses: mikefarah/yq@v4
with:
cmd: yq -i '(.images.[] | select(.name == "${{ inputs.image }}").newTag) = "${{ inputs.version }}"' fleet/languageforge-lexbox/kustomization.yaml
cmd: yq eval -i '(.images.[] | select(.name == "${{ inputs.image }}").newTag) = "${{ inputs.version }}"' "fleet/languageforge-lexbox/kustomization.yaml"
- name: Push to fleet repo
# https://github.com/EndBug/add-and-commit
uses: EndBug/add-and-commit@v9
Expand Down

0 comments on commit b10b3f2

Please sign in to comment.