Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
git checkout master

3. Create a release branch with the correct release version

Code Block
git branch release/<0.103.0> <-- Add correct release version number

4. Merge changes from develop branch to master newly created release branch:

Code Block
git merge develop

At this point, the release pipelines will be automatically triggered to deploy the solution into Prod.

45. Wait and see if the release pipeline succeeds:

56. Repeat above steps for all solutions that must be released.

...