From da10a7dc71f35adfd25e5bacdf3986110884b672 Mon Sep 17 00:00:00 2001 From: zeroalphat Date: Thu, 18 Jul 2024 10:03:32 +0900 Subject: [PATCH] Update release procedure to use gh command Signed-off-by: zeroalphat --- CHANGELOG.md | 1 + RELEASE.md | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8d727d0..22d0bd8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Update dependencies in [#283](https://github.com/cybozu-go/sabakan/pull/283) +- Update release procedure to use gh command [#284](https://github.com/cybozu-go/sabakan/pull/284) ## [3.1.1] - 2024-03-21 diff --git a/RELEASE.md b/RELEASE.md index 3a2ebe0d..de5ff12d 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -59,7 +59,9 @@ Bump version 2. Make a branch to release ```console - $ git neco dev "bump-$VERSION" + $ git checkout main + $ git pull + $ git checkout -b "bump-$VERSION" ``` 3. Edit `CHANGELOG.md` for the new version ([example][]). @@ -68,7 +70,8 @@ Bump version ```console $ git commit -a -m "Bump version to $VERSION" - $ git neco review + $ git push -u origin HEAD + $ gh pr create -f ``` 6. Merge this branch.