Skip to content

Merge branch 'release/5.0.0' into main #11

Merge branch 'release/5.0.0' into main

Merge branch 'release/5.0.0' into main #11

Workflow file for this run

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}}