Skip to content

v2.2.8 - minor changes #15

v2.2.8 - minor changes

v2.2.8 - minor changes #15

Workflow file for this run

name: Publish NuGet Package
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup .NET SDK
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.x
- name: Build Package
run: dotnet build -c Release
- name: Publish Package
run: |
dotnet pack -c Release
dotnet nuget push bin/Release/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true