Go SemVer Release
Go program designed to automate versioning of Git repository by analyzing their formatted commit history and tagging them with the right semver number. This program can be used directly or via its corresponding GitHub Action.
Motivations
Handling a Git repository versions can be done seamlessly using well-thought convention such as SemVer so that subscribers know when a non-retro-compatible change is introduced inside your API. Building on that, versioning automation is achieved using formated commits following the Conventional Commit convention.
This tool aims to integrate the automation in such a way that all you have to do is:
Install
If Go is installed on your machine, you can directly compile and install this program with go install
:
$ go install github.com/s0ders/go-semver-release
$ go-semver-release --help
For more cross-platform compatibility, you can use the official Docker image:
$ docker pull soders/go-semver-release
$ docker run --rm soders/go-semver-release --help
Prerequisites
There are only a few prerequisites for using this tool and getting the benefits it brings :
- The Git repository commits must follow the Conventional Commit convention, as it is what is used to compute the semantic version.
- The repository passed to the program (or action) must already be initialized (i.e.
HEAD
does not point to nothing)
GitHub Actions
The go-release-semver
program can easily be used inside your Actions pipeline. It takes the same parameters as those describe in the usage section bellow except for --dry-run
(yet).
Bellow is an example usage of this action inside a GitHub Actions pipeline.
jobs:
go-semver-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Semver Release
uses: s0ders/go-semver-release@0.11.1
with:
repository-url: "https://github.com/path/to/your/repo.git"
tag-prefix: "v"
branch : "release"
token: ${{ secrets.ACCESS_TOKEN }}
Usage
You must pass the Git URL of the repository to target using the --url
flag:
$ go-semver-release --url [GIT URL]
Because the program needs to push tag to the remote, it must authenticate itself using a personal access token passed with --token
:
$ go-semver-release --url ... --token [ACCESS TOKEN]
The release branch on which the commits are fetched is specified using --branch
:
$ go-semver-release --url ... --token ... --branch release
Custom release rules are passed to the program using the --rules
:
$ go-semver-release --url ... --token ... --rules [PATH TO RULES]
The program supports a dry-run mode that will only compute the next semantic version, if any, and will stop here without pushing any tag to the remote, dry-run is off by default:
$ go-semver-release --url ... --token ... --dry-run true
A custom prefix can be added to the tag name pushed to the remote, by default the tag name correspond to the SemVer (e.g. 1.2.3
) but you might want to use some prefix like v
using --tag-prefix
:
$ go-semver-release --url ... --token ... --tag-prefix v
Note: with the --tag-prefix
flag is that you can change your tag prefix during the lifetime of your repository (e.g. going from v
to version-
) and this will not affect the way go-semver-release
will fetch your semver tags history, meaning that the program will still be able to recognize semver tags made with your old-prefixes.
Release Rules
Release rules define which commit type will trigger a release, and what type of release (i.e. major, minor, patch). By default, the program applies the following release rules:
{
"releaseRules": [
{"type": "feat", "release": "minor"},
{"type": "perf", "release": "minor"},
{"type": "fix", "release": "patch"}
]
}
You can define custom release rules to suit your needs using a JSON file and by passing it to the program as bellow. Be careful with release rules though, especially major ones, as their misuse might can easily make you loose the benefits of using a semantic version number.
{
"releaseRules": [
{"type": "perf", "release": "minor"},
{"type": "perf", "release": "patch"},
{"type": "fix", "release": "patch"}
]
}
The following type
are supported for release rules: build
, chore
, ci
, docs
, feat
, fix
, perf
, refactor
, revert
, style
, test
.
The following release
types are supported for release rules: major
, minor
, patch
.
Work in progress
- Handle
--dry-run
for Github Action
- If a new version is computed, return it as the action
output