Skip to content

Commit

Permalink
Merge pull request #105 from topolvm/fix-chart-update-pr
Browse files Browse the repository at this point in the history
Fixed a bug that failed to embed a version string.
  • Loading branch information
llamerada-jp authored Feb 2, 2024
2 parents 019a6cd + 8ca816c commit 4496605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-chart-update-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
git switch -c bump-chart-${{ inputs.chart-version }}
- name: "Update files"
run: |
sed -r -i "s/version: [[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+/version: {{ inputs.chart-version }}/g" charts/pie/Chart.yaml
sed -r -i "s/version: [[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+/version: ${{ inputs.chart-version }}/g" charts/pie/Chart.yaml
sed -r -i "s/appVersion: [[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+/appVersion: ${{ inputs.app-version }}/g" charts/pie/Chart.yaml
sed -r -i "s/ghcr.io\/topolvm\/pie:[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+/ghcr.io\/topolvm\/pie:${{ inputs.app-version }}/g" charts/pie/Chart.yaml
- name: Issue an access token
Expand Down

0 comments on commit 4496605

Please sign in to comment.