Skip to content

Commit

Permalink
fix: unterminated string
Browse files Browse the repository at this point in the history
  • Loading branch information
evanshortiss committed Oct 13, 2023
1 parent da55410 commit 53b44fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-backend-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
- name: Update values.yaml
uses: mikefarah/[email protected]
with:
cmd: yq -i e ".backend.image = \"${{github.event.inputs.image}}\" helm/values.yaml
cmd: yq -i e ".backend.image = \"${{github.event.inputs.image}}\"" helm/values.yaml
- name: Update values.production.yaml
uses: mikefarah/[email protected]
with:
cmd: yq -i e .backend.image = \"${{github.event.inputs.image}}\" helm/values.production.yaml
cmd: yq -i e .backend.image = \"${{github.event.inputs.image}}\"" helm/values.production.yaml

# Create a PR with the new values files. This requires actions to
# be allowed to open a PR:
Expand Down

0 comments on commit 53b44fb

Please sign in to comment.