Conversation
…file * Made into multi-build project * Fixed tests * Cleaned up Taggable * Cleaned up TagLib descriptor
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Agent-Logs-Url: https://github.com/gpc/taggable/sessions/59110057-0ccf-440a-8d17-5e0f63499671 Co-authored-by: sbglasius <625868+sbglasius@users.noreply.github.com>
Agent-Logs-Url: https://github.com/gpc/taggable/sessions/06ae9e5a-0ce2-4dc4-b0fb-9db4723bf799 Co-authored-by: sbglasius <625868+sbglasius@users.noreply.github.com>
Agent-Logs-Url: https://github.com/gpc/taggable/sessions/06ae9e5a-0ce2-4dc4-b0fb-9db4723bf799 Co-authored-by: sbglasius <625868+sbglasius@users.noreply.github.com>
…file * Made into multi-build project * Fixed tests * Cleaned up Taggable * Cleaned up TagLib descriptor
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 major overhaul of the project's GitHub Actions workflows, modernizing and expanding CI/CD automation for building, testing, releasing, and documentation. It replaces the previous, simpler workflows with a more robust, modular, and maintainable pipeline that supports reproducible builds, dynamic Java versioning, and improved publishing and documentation processes.
Key changes include:
CI/CD Workflow Modernization
build.ymlworkflow with a new, comprehensiveci.ymlthat supports multiple branches, dynamic Java version selection from.sdkmanrc, improved Gradle caching, and conditional test skipping. The workflow also adds a publishing job for snapshot artifacts and documentation deployment. [1] [2]Release Process Overhaul
release.ymlworkflow to split the release process into modular jobs: artifact staging, publishing to Maven Central, documentation publishing, and post-release version bumping. The new workflow uses modern actions, dynamic environment variables, and ensures reproducible builds.Automated Release Note Drafting
release-notes.ymlworkflow that uses Release Drafter to automatically update release drafts and manage pull request labeling, triggered by a variety of events.Build Environment Standardization
.sdkmanrcfile specifying Java, Gradle, and Groovy versions, enabling consistent local and CI environments and allowing workflows to dynamically determine tool versions.References: