From 2df99246a92b40482032c70f8bb4e2777df6321d Mon Sep 17 00:00:00 2001 From: Robert Waffen Date: Wed, 6 Nov 2024 18:11:07 +0100 Subject: [PATCH] Update from voxpupuli modulesync_config --- RELEASE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index 41bf69904..2f3564fbc 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -10,7 +10,7 @@ Your attention to this specific branch naming convention is essential for accura ```shell export RELEASE_VERSION="X.Y.Z" git switch main -git pull -r +git pull --rebase git switch -c release-v$RELEASE_VERSION bundle config set --local path vendor/bundle @@ -18,8 +18,8 @@ bundle config set --local with 'release' bundle install CHANGELOG_GITHUB_TOKEN="token_MC_tokenface" bundle exec rake changelog -git commit -am "Release v${RELEASE_VERSION}" -git push origin release-v$RELEASE_VERSION +git commit --all --message "Release v${RELEASE_VERSION}" +git push --set-upstream origin HEAD ``` Then open a PR, discuss and merge. @@ -28,7 +28,7 @@ Then open a PR, discuss and merge. ```shell git switch main -git pull -r +git pull --rebase git tag v$RELEASE_VERSION -m "v$RELEASE_VERSION" git push --tags ```