From ff2f4574135095d04a137d2b6130cbdd7a791efd Mon Sep 17 00:00:00 2001 From: konstantinos Date: Sun, 18 Aug 2024 18:06:19 +0300 Subject: [PATCH] docs: include Next Steps, for Release Me Run Guide --- .../run/guide_run_gitops_release_me_process.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) 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 6fe60e3..a981161 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 @@ -41,7 +41,7 @@ This is a `how-to` Guide, with everything you need, to "run" the - [Setup Human Approval](../setup/guide_setup_main_manual_acceptance.md) -## Guide +## :material-forward: Guide @@ -127,9 +127,9 @@ This is a `how-to` Guide, with everything you need, to "run" the 2. :man_raising_hand: Typical files are, `VERSION`, `pyproject.toml`, `package.json`, etc. -## Congratulations :partying_face: ! +## Congratulations :partying_face: -Your changes should now be merged into `main`. +Your changes should now be **merged** and **tagged** into `main`! ```mermaid %%{init: { 'logLevel': 'debug', 'theme': 'gitGraph': {'rotateCommitLabel': false, 'showBranches': true, 'showCommitLabel':true, 'mainBranchName': 'main / master'}} }%% @@ -150,5 +150,13 @@ Your changes should now be merged into `main`. commit id: "CHANGELOG.md" tag: "v2.1.0-rc" checkout main - merge release id: "[NEW] 2.1.0" type: HIGHLIGHT + merge release id: "[NEW] 2.1.0" type: HIGHLIGHT tag: "v2.1.0" ``` + +### Next Steps + +- :material-sync: Sync your local `main` branch with **remote** + + ```sh + git checkout main && git pull origin main + ```