Commit 905cbb5 1 parent c891bbc commit 905cbb5 Copy full SHA for 905cbb5
File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ pkg_tar(
17
17
name = "bazel_lib" ,
18
18
srcs = [
19
19
"README.md" ,
20
- "version.bzl" ,
21
20
"//lib:package_content" ,
22
21
],
23
22
extension = "tar.gz" ,
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ This means that any usage of `@aspect_bazel_lib` on your system will point to th
39
39
40
40
## Releasing
41
41
42
- 1 . Update the constant in ` version.bzl `
43
- 1 . ` git commit -a -m ' release' `
44
- 1 . ` git tag v$(grep VERSION version.bzl | cut -d'"' -f2) `
45
- 1 . git push && git push --tags
42
+ 1 . Make sure your git state is at the right place (something like ` git fetch; git checkout origin/main ` )
43
+ 1 . Determine the next release version, following semver (could automate in the future from changelog)
44
+ 1 . ` git tag -a v1.2.3 ` (will open an editor to put release notes)
45
+ 1 . ` git push --tags `
46
46
1 . Watch the automation run on GitHub actions
47
47
1 . Update the release page with auto-generated release notes
You can’t perform that action at this time.
0 commit comments