Merge branch 'release/5.0.0' into main #11
This file contains 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
name: publish to nuget | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
name: build, pack & publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v14 | |
with: | |
dotnet-version: 8.0.206 | |
# Publish | |
- name: publish on version change | |
id: publish_nuget | |
uses: rohith/publish-nuget@v2 | |
with: | |
# Filepath of the project to be packaged, relative to root of repository | |
PROJECT_FILE_PATH: DcsBiosCommunicator/DcsBiosCommunicator.csproj | |
# NuGet package id, used for version detection & defaults to project name | |
PACKAGE_NAME: DcsBios.Communicator | |
# Regex pattern to extract version info in a capturing group | |
VERSION_REGEX: ^\s*<PackageVersion>(.*)<\/PackageVersion>\s*$ | |
NUGET_KEY: ${{secrets.NUGET_API_KEY}} |