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

Update releasing guide for v3 #3278

Merged
merged 4 commits into from
Sep 22, 2023
Merged
Changes from 1 commit
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
18 changes: 16 additions & 2 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Perform the following steps in order to release new verions of helm chart.

```bash
export TAG=x.y.z
git checkout main
git checkout release-v3
git pull
git tag -sm "v${TAG}" "v${TAG}"
git push origin "v${TAG}"
Expand All @@ -37,7 +37,21 @@ Perform the following steps in order to release new verions of helm chart.
git push -u origin "release-v${TAG%.*}"
```

1. Create [new release][releases]
1. Create [new release][releases]. Copy generated changelog to release notes.

1. Cherrypick commit with changelog to main branch

- find SHA for commit with changes in changelog

- ```bash
git checkout main
git pull
git checkout -b <NEW_BRANCH_NAME>
git cherry-pick <COMMIT_SHA>
git push
```

- create a PR
dmolenda-sumo marked this conversation as resolved.
Show resolved Hide resolved

[deploy_title]: /docs/README.md#deployment-guide-for-unreleased-version
[changelog]: /CHANGELOG.md#unreleased
Expand Down