Add semantic-release configuration#16
Merged
Merged
Conversation
|
🎉 This PR is included in version 1.24.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
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.
This pull request introduces a complete setup for automated releases and Maven Central publishing for the project. It adds GitHub Actions workflow, semantic-release configuration, and updates the Maven build to support snapshot and release deployments with GPG signing and the new Central publishing plugin. These changes enable continuous integration and delivery, including multi-Java-version testing and automated deployment of artifacts.
CI/CD and Release Automation:
.github/workflows/autorelease.ymlto automate testing (on Java 21, 23, 25) and releases on pushes to thereleasebranch, including steps for GPG setup, Node, semantic-release, and merging changes back tomaster.release.config.jsfor semantic-release configuration, integrating Maven deployment, GitHub, and Git plugins, and specifying thereleasebranch as the publishing source.package.jsonwith dev dependencies for semantic-release and Maven semantic-release plugins.Maven Build and Publishing Configuration:
pom.xml:distributionManagementfor Maven Central Snapshots.releaseprofile for source/javadoc jars and GPG signing.central-publishing-maven-pluginfor publishing to Maven Central.Credential Management:
settings.xmlto securely provide credentials for Maven Central and GPG signing, reading secrets from environment variables.These changes collectively enable robust, automated, and secure publishing of project artifacts to Maven Central, with a modern CI/CD workflow.