Skip to content

Commit

Permalink
Merge pull request #12 from voxpupuli/modulesync
Browse files Browse the repository at this point in the history
Update from voxpupuli modulesync_config
  • Loading branch information
rwaffen authored Nov 7, 2024
2 parents 6fec892 + 745b68d commit 682ca7a
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 682ca7a

Please sign in to comment.