Skip to content

Commit

Permalink
Update from voxpupuli modulesync_config
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaffen authored and bastelfreak committed Nov 6, 2024
1 parent c77b0e3 commit 93436ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ 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
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.
Expand All @@ -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
```

0 comments on commit 93436ae

Please sign in to comment.