Refines CI/CD with automated releases and versioning#41
Merged
Conversation
Introduces an automated GitHub Release workflow that triggers on pushes to main, utilizing GitVersion for semantic versioning. Upgrades GitVersion GitHub Actions to v4.3.0 and GitVersion core to 6.4.x, alongside a new `GitVersion.yml` configuration. This configuration establishes `ContinuousDeployment` mode, `MajorMinorPatchTag` for assembly versions, and explicit version increment rules for various branches, ensuring consistent and predictable versioning across the project. Updates various GitHub Actions, including `checkout`, `upload-artifact`, `download-artifact`, and `cache`, to their latest major versions to leverage new features and security improvements. Adjusts the `dotnet pack` command in the build workflow to align with the new GitVersion outputs for accurate package versioning.
Bumps `Microsoft.Extensions.*` packages to their latest patch versions. Also updates testing-related packages, including `coverlet.collector` and `Microsoft.NET.Test.Sdk`. Keeps the project's dependencies current, leveraging the latest fixes and improvements.
…eApiId and update integration tests to pass SessionizeApiId as a parameter
…ApiClient methods
|
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.



Introduces an automated GitHub Release workflow that triggers on pushes to main, utilizing GitVersion for semantic versioning.
Upgrades GitVersion GitHub Actions to v4.3.0 and GitVersion core to 6.4.x, alongside a new
GitVersion.ymlconfiguration. This configuration establishesContinuousDeploymentmode,MajorMinorPatchTagfor assembly versions, and explicit version increment rules for various branches, ensuring consistent and predictable versioning across the project.Updates various GitHub Actions, including
checkout,upload-artifact,download-artifact, andcache, to their latest major versions to leverage new features and security improvements.Adjusts the
dotnet packcommand in the build workflow to align with the new GitVersion outputs for accurate package versioning.