Publishing a new release
The project uses Nerdbank.GitVersioning tool to manage versions.
Each library build can be traced back to the original git commit. The installation is simple:
dotnet tool install --global nbgv
Preparing and publishing a new release
- Make sure that
nbgv
dotnet CLI tool is installed and is up-to-date - Run
nbgv prepare-release
to create a stable branch for the upcoming release, i.e. release/v1.0 - Switch to the release branch:
git checkout release/v1.0
- Execute the unit tests, update the README, release notes in csproj file, etc. Commit and push your changes.
- Run
dotnet pack -c Release
and verify that it builds Nuget packages with the right version number. - Run
nbgv tag release/v1.0
to tag the last commit on the release branch with your current version number, i.e. v1.0.7. - Push tags as suggested by nbgv tool:
git push origin v1.0.7
- Go to the GitHub project page and create a release out of the last tag v1.0.7.
- Verify that github workflow for publishing the NuGet package has completed.
- Switch back to master and merge the release branch.
NuGet package token
- GitHub actions publish all tagged releases as NuGet packages automatically.
- NuGet API token is required for publishing new package versions.
- The token expires every year and should be regenerated upon expiration.
- Please contact NuGet package owners for regenerating the package token.
- API key: Settings → Action secrets and variables →
NUGET_NCALC_SYNC_API_TOKEN
secret.