-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from philips-labs/release-docs
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Release procedures | ||
|
||
## Automated release procedure | ||
|
||
To make a new release you can make use of the following `make` task. | ||
|
||
```bash | ||
make gh-release NEW_VERSION=v0.6.0 OLD_VERSION=v0.5.0 DESCRIPTION="A test release to see how it works" | ||
``` | ||
|
||
`NEW_VERSION` the version that you want to release. | ||
`OLD_VERSION` the current version you wish to replace in the markdown and yaml files. | ||
`DESCRIPTION` the annotation used when tagging the release. | ||
|
||
### ⚠ Important alert for MacOS users ⚠ | ||
|
||
On MacOS `sed` has different behaviour and therefore doesn't work out of the box. | ||
A workaround to make it work is to install gnu-sed and alias it in your bashrc/zshrc: | ||
|
||
```bash | ||
brew install gnu-sed | ||
echo "alias sed=gsed" >> ~/.zshrc | ||
``` | ||
|
||
## Manual release procedure | ||
|
||
1. Upgrade version number in all repository files, find & replace previous version number with new version number. | ||
1. Commit the changed files. | ||
1. Tag the new commit using `git tag -sam "What is this release about?" v0.1.0`. | ||
1. Push the tag to remote using `git push v0.1.0` | ||
1. Wait for the release workflow to finish, then push the main branch using `git push` |