Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(actions): Automatic bump the version when doing a release #85

Merged
merged 3 commits into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ jobs:
- name: Update Dependencies
run: helm dependency update .

- name: Update Chart and Values Versions
run: |
sed -i "s/^version:.*/version: ${{ github.event.inputs.tag }}/" Chart.yaml
sed -i "s/^appVersion:.*/appVersion: '${{ github.event.inputs.tag }}'/" Chart.yaml
sed -i "s/^version:.*/version: ${{ github.event.inputs.tag }}/" values.yaml
git add Chart.yaml values.yaml
git commit -m "chore(release): update chart, appVersion, and values versions to ${{ github.event.inputs.tag }}"
git push origin main

- name: Run chart-releaser
uses: helm/[email protected]
with:
Expand Down
Loading