Conversation
Member
Author
|
This is in preparation for adding Kamal and building a line of defence should we transition to a new hosting platform. |
Adds a 'release' job to the GitHub Actions CI that runs after the build on the main branch. The job checks out the repo (fetch-depth: 0), bumps the version and pushes a tag using mathieudutour/github-tag-action, then creates a GitHub Release via softprops/action-gh-release with the new tag and changelog. The job requires contents: write permission and uses the repository GITHUB_TOKEN.
Bump multiple gems in Gemfile.lock: annotaterb 4.20.0 -> 4.21.0, brakeman 7.1.2 -> 8.0.2, guard 2.20.0 -> 2.20.1, herb 0.8.8 -> 0.8.9 (all platforms), json 2.18.0 -> 2.18.1, prism 1.8.0 -> 1.9.0, rspec-support 3.13.6 -> 3.13.7, rubocop 1.82.1 -> 1.84.1 (and rubocop-ast minimum bumped to >= 1.49.0), spring 4.4.0 -> 4.4.2, thruster 0.1.17 -> 0.1.18 (platform builds), and turbo-rails 2.0.21 -> 2.0.23.
2a9082a to
f8d3176
Compare
There was a problem hiding this comment.
Pull request overview
This PR adds automated release management to the CI workflow, creating GitHub releases automatically when changes are merged to the main branch.
Changes:
- Adds a new
releasejob that runs after the build job completes on the main branch - Implements automatic version bumping and tag creation using conventional commits
- Generates GitHub releases with automatically generated changelogs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a 'release' job to the GitHub Actions CI that runs after the build on the main branch. The job checks out the repo (fetch-depth: 0), bumps the version and pushes a tag using mathieudutour/github-tag-action, then creates a GitHub Release via softprops/action-gh-release with the new tag and changelog. The job requires contents: write permission and uses the repository GITHUB_TOKEN.