Skip to content

Commit

Permalink
fix: Fix helm chart release regex (#2734)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlokshin-czi authored Nov 16, 2023
1 parent 0324b7c commit e29dbda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/charts-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ jobs:
RELEASE=${{ needs.check-chart-released.outputs.tag }}
VERSION=${{ steps.parse_version.outputs.result }}
sed -i "\d+\.\d+\.\d+/$VERSION/g" ${CHARTS_DIR}/Chart.yaml
sed -i 's/appVersion\:\s[0-9.]\+/appVersion\: ${VERSION}/g' ${CHARTS_DIR}/Chart.yaml
sed -i 's/version\:\s[0-9.]\+/version\: ${VERSION}/g' ${CHARTS_DIR}/Chart.yaml
echo ------
cat ${CHARTS_DIR}/Chart.yaml
echo ------
Expand Down

0 comments on commit e29dbda

Please sign in to comment.