Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeluard committed Jun 16, 2020
1 parent 939cc79 commit 5968f04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd-staging-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ jobs:
- name: Update template version
run: |-
t=$(mktemp)
cat conf/k8s/overlays/staging/template/${{ github.event.client_payload.id }} | jq ".image = \"${{ env.IMAGE }}\"" > ${t} && mv ${t} conf/k8s/overlays/staging/template/${{ github.event.client_payload.id }}
cat conf/k8s/overlays/staging/templates/${{ github.event.client_payload.id }} | jq ".image = \"${{ env.IMAGE }}\"" > ${t} && mv ${t} conf/k8s/overlays/staging/templates/${{ github.event.client_payload.id }}
- name: Commit template version update
uses: EndBug/add-and-commit@v4
with:
message: ":bookmark: update template version for ${{ github.event.client_payload.id }}"
add: conf/k8s/overlays/staging/template/${{ github.event.client_payload.id }}
add: conf/k8s/overlays/staging/templates/${{ github.event.client_payload.id }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 5968f04

Please sign in to comment.