Skip to content

Clean up code, update package versions #30

Clean up code, update package versions

Clean up code, update package versions #30

Workflow file for this run

name: Publish NuGet
on:
push:
paths-ignore:
- 'docs/**'
- 'README.md'
branches:
- master
tags:
- '*'
jobs:
nuget:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create and push NuGet package
run: |
dotnet pack -c Release -o nuget -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg
dotnet nuget push nuget/**/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate