diff --git a/docs/guides/gitops/run/guide_run_gitops_release_me_process.md b/docs/guides/gitops/run/guide_run_gitops_release_me_process.md index 5487a6b..6fe60e3 100644 --- a/docs/guides/gitops/run/guide_run_gitops_release_me_process.md +++ b/docs/guides/gitops/run/guide_run_gitops_release_me_process.md @@ -46,7 +46,7 @@ This is a `how-to` Guide, with everything you need, to "run" the -1. Fire-up `release-me` git tag event +1. :octicons-tag-24: Fire-up `release-me` git tag event ```sh export _tag=release-me @@ -54,9 +54,9 @@ This is a `how-to` Guide, with everything you need, to "run" the git tag "$_tag" && git push origin "$_tag" ``` -2. Wait for PR to open against *base* `main` branch, from *head* `release` branch +2. :material-source-pull: Wait for PR to open against *base* `main` branch, from *head* `release` branch -3. Sync `release` branch to local checkout +3. :material-sync: Sync `release` branch to local checkout ```sh export release=release @@ -69,11 +69,9 @@ This is a `how-to` Guide, with everything you need, to "run" the git pull origin "${release}" ``` -4. Derive Release Semantic Version +4. :simple-semanticrelease: Derive Release Semantic Version - To help you decide on the Version Bump (`Current_Version + Version_Bump = New_Version`), see the [Decision Diagram](../../../topics/semantic-release.md#semantic-release-version-bump), or read more on the [Semantic Release Topic](../../../topics/semantic-release.md) - - Please enter the new **Semantic Release Version**, you intend to publish: + **Please enter** the new **Semantic Release Version**, you intend to publish:
code CHANGELOG.md
git add CHANGELOG.md && commit -m "chore(changelog): add v... Changelog Release Entry"
code CHANGELOG.md
git add CHANGELOG.md && commit -m "chore(changelog): add v... Changelog Release Entry"
git push origin release
auto-prod-<sem ver>
git tag event (ie auto-prod-1.2.0
)