Skip to content

Commit

Permalink
Fix patch helm release (#543)
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Poignant <[email protected]>
  • Loading branch information
thomaspoignant authored Feb 27, 2023
1 parent f474fbb commit 2e1a4c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,11 @@ jobs:

- name: Bump chart appVersion
working-directory: ./release/
run: yq -i '.appVersion="$GIT_TAG_NAME"' $CHART_YAML_FILE_LOCATION
run: yq -i ".appVersion=\"$GIT_TAG_NAME\"" $CHART_YAML_FILE_LOCATION

- name: Bump chart version
working-directory: ./release/
run: yq -i '.version="${GIT_TAG_NAME#v}"' $CHART_YAML_FILE_LOCATION
run: yq -i ".version=\"${GIT_TAG_NAME#v}\"" $CHART_YAML_FILE_LOCATION

- name: Checkout main branch
uses: actions/checkout@v3
Expand Down

0 comments on commit 2e1a4c3

Please sign in to comment.