From af76f1bace04c2323595d8f934ef32c728e59864 Mon Sep 17 00:00:00 2001 From: Masayuki Ishii Date: Thu, 18 Jul 2024 18:54:09 +0900 Subject: [PATCH] Update release procedure to use gh command Signed-off-by: Masayuki Ishii --- CHANGELOG.md | 1 + RELEASE.md | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54b054a..123b9df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Changed +- Update release procedure to use gh command ([#114](https://github.com/cybozu-go/setup-hw/pull/114)) - Update dependencies ([#113](https://github.com/cybozu-go/setup-hw/pull/113)) - Update actions/setup-go - Update go module dependencies diff --git a/RELEASE.md b/RELEASE.md index 22102c0..a4688fa 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -29,7 +29,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][]). @@ -37,7 +39,8 @@ Bump version ```console $ git commit -a -m "Bump version to $VERSION" - $ git neco review + $ git push -u origin HEAD + $ gh pr create -f ``` 5. Merge the pull request.