diff --git a/.github/workflows/publish-nuget.yml b/.github/workflows/publish-nuget.yml new file mode 100644 index 0000000..f48ee91 --- /dev/null +++ b/.github/workflows/publish-nuget.yml @@ -0,0 +1,16 @@ +name: PublishToNuget + +on: [push] + +jobs: + build: + name: publish to nuget + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 2 + - name: Publish NuGet + uses: rohith/publish-nuget@v1.0.3 + with: + nuget_key: ${{ secrets.NugetKey }}