Skip to content

Commit

Permalink
release: update instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Nov 11, 2021
1 parent c891bbc commit 905cbb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ pkg_tar(
name = "bazel_lib",
srcs = [
"README.md",
"version.bzl",
"//lib:package_content",
],
extension = "tar.gz",
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ This means that any usage of `@aspect_bazel_lib` on your system will point to th

## Releasing

1. Update the constant in `version.bzl`
1. `git commit -a -m 'release'`
1. `git tag v$(grep VERSION version.bzl | cut -d'"' -f2)`
1. git push && git push --tags
1. Make sure your git state is at the right place (something like `git fetch; git checkout origin/main`)
1. Determine the next release version, following semver (could automate in the future from changelog)
1. `git tag -a v1.2.3` (will open an editor to put release notes)
1. `git push --tags`
1. Watch the automation run on GitHub actions
1. Update the release page with auto-generated release notes

0 comments on commit 905cbb5

Please sign in to comment.