-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add v prefix to versions to be compatible with go.mod (#169)
- Loading branch information
1 parent
b02ab2c
commit 499f489
Showing
2 changed files
with
5 additions
and
3 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ name: Release | |
on: | ||
push: | ||
tags: | ||
- "*.*.*" | ||
- "v*.*.*" | ||
|
||
jobs: | ||
build: | ||
|
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# Releasing Bazel-snapshots | ||
|
||
To release a new version of Bazel-snapshots, create a new git tag in following semver versioning format, eks. `x.y.z`. When a tag of this format is pushed | ||
to Github the release action will run and generate a new draft Github Release. The draft can be promoted to a proper release at your convenience after you've verified that everything looks right in the draft. | ||
To release a new version of Bazel-snapshots, create a new git tag in following semver versioning format, eks. `vx.y.z`. | ||
The v prefix is necessary for being able to import it from a go.mod. | ||
When a tag of this format is pushed to Github the release action will run and generate a new draft Github Release. | ||
The draft can be promoted to a proper release at your convenience after you've verified that everything looks right in the draft. |