-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Federico Di Pierro <[email protected]>
- Loading branch information
Showing
1 changed file
with
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Release Process | ||
|
||
When we release we do the following process: | ||
|
||
1. We decide together (usually in the #falco channel in [slack](https://kubernetes.slack.com/messages/falco)) what's the next version to tag | ||
2. A person with repository rights does the tag | ||
3. The same person runs commands in their machine following the "Release commands" section below | ||
4. Once the CI has done its job, the tag is live on [Github](https://github.com/falcosecurity/kernel-testing/releases) | ||
|
||
## Release commands | ||
|
||
Tag the version, keep the `v` and replace `x.y.z` with the version number. e.g: `0.2.0` | ||
|
||
```bash | ||
git pull | ||
git checkout master | ||
git tag vx.y.z | ||
git push origin vx.y.z | ||
``` | ||
> N.B.: do NOT use an annotated tag |