Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 847 Bytes

release.md

File metadata and controls

19 lines (13 loc) · 847 Bytes

Release Process

Our release process is fully automated using Github actions and goreleaser tool for artifacts.

When we release we do the following process:

  1. We decide together (usually in the #falco channel in slack) 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 with the artifacts, and the container image is live on GHCR.

Release commands

Tag the version

git tag -a v0.1.0-rc.0 -m "v0.1.0-rc.0"
git push origin v0.1.0-rc.0