Skip to content

Another doc fix

Another doc fix #4

Workflow file for this run

name: Publish
on:
push:
tags: 'v*'
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout package
uses: actions/checkout@v3
with:
lfs: true
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.x'
- name: Perform packaging
run: dotnet pack lib --configuration Release
- name: Publish to NuGet
run: dotnet nuget push "lib/**/bin/Release/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate