Skip to content

Commit

Permalink
docs: fix little issues in release process
Browse files Browse the repository at this point in the history
  • Loading branch information
da2ce7 committed Sep 18, 2023
1 parent f897f2f commit cba4cda
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions docs/release_process.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Torrust Tracker Release Process (v2.2.1)
# Torrust Tracker Release Process (v2.2.2)

## Version:
> **The `[semantic version]` is bumped according to releases, new features, and breaking changes.**
Expand All @@ -7,6 +7,20 @@
## Process:

**Note**: this guide assumes that the your git `torrust` remote is like this:

```sh
git remote show torrust
```

```s
* remote torrust
Fetch URL: git@github.com:torrust/torrust-tracker.git
Push URL: git@github.com:torrust/torrust-tracker.git
...
```


### 1. The `develop` branch is ready for a release.
The `develop` branch should have the version `[semantic version]-develop` that is ready to be released.

Expand All @@ -22,6 +36,7 @@ git push --force torrust develop:staging/main
```sh
git stash
git switch staging/main
git reset --hard torrust/staging/main
# change `[semantic version]-develop` to `[semantic version]`.
git add -A
git commit -m "release: version [semantic version]"
Expand Down Expand Up @@ -65,7 +80,8 @@ git push --force torrust main:staging/develop

```sh
git stash
git switch staging/main
git switch staging/develop
git reset --hard torrust/staging/develop
# change `[semantic version]` to `(next)[semantic version]-develop`.
git add -A
git commit -m "develop: bump to version (next)[semantic version]-develop"
Expand Down

0 comments on commit cba4cda

Please sign in to comment.