Skip to content

Commit

Permalink
ci: fix bumping tag in values.yaml (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
blumamir authored May 13, 2024
1 parent 23aee1b commit 2e88ca5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/create-release-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@ jobs:
# Update appVersion in Chart.yaml
sed -i "s|appVersion: \".*\"|appVersion: \"${{ env.TAG }}\"|g" Chart.yaml
# Update image tag in values.yaml
sed -i "s|tag: \".*\"|tag: \"${{ env.TAG }}\"|g" values.yaml
# Update image tag in values.yaml, handling both quoted and unquoted cases
sed -i "s|tag: [\"'].*[\"']|tag: \"${{ env.TAG }}\"|g" values.yaml
sed -i "s|tag: [^\"'].*|tag: \"${{ env.TAG }}\"|g" values.yaml
- name: github preperation
id: github_preperation
run: |
Expand Down

0 comments on commit 2e88ca5

Please sign in to comment.