Skip to content

Commit 3dc3e58

Browse files
haargranguard
authored andcommitted
fix quoting in set-image commit
Using double quotes means backquotes are interpolated as a shell command.
1 parent 392b537 commit 3dc3e58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/set-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ jobs:
5252
run: |
5353
kustomize edit set image ${{ inputs.base-tag }} ${{ inputs.tag }}
5454
git add .
55-
git commit -m "Update ${{ inputs.app }} to `${{ inputs.tag }}`"
55+
git commit -m 'Update ${{ inputs.app }} to `${{ inputs.tag }}`'
5656
- name: Push manifests
5757
run: git push

0 commit comments

Comments
 (0)