feat: Implement Nuke-based CI/CD pipeline with versioning#5
Merged
Conversation
added 2 commits
August 4, 2025 16:24
- Add Nuke build automation with Clean, Restore, Compile, Test, Pack, and Publish targets - Implement VERSION file-based versioning (v1.0.1) with Git tag override support - Configure GitHub Actions workflows for PR validation and release publishing - Update project files to use centralized version management via Directory.Build.props - Make tests non-blocking for package creation due to integration test requirements - Add comprehensive branch protection documentation - Fix PersonalNumber field compilation errors in tests The pipeline now supports: - Automatic PR validation with compilation checks - NuGet package publishing on GitHub releases - Version management from VERSION file or Git tags - Test execution (currently non-blocking) *Collaboration by Claude*
- Add CheckVersion target that compares VERSION against main branch - PR validation now requires version to be incremented - Gracefully handles first-time VERSION file creation - Version comparison supports semantic versioning format This ensures every PR includes a version bump, preventing version conflicts and maintaining proper release versioning. *Collaboration by Claude*
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.
Summary
Changes Made
Build Automation
Version Management
GitHub Actions Workflows
Documentation
Test Plan
Notes
Collaboration by Claude