Skip to content

updated nuget.org properties to include readme, icon and a ref to the… #9

updated nuget.org properties to include readme, icon and a ref to the…

updated nuget.org properties to include readme, icon and a ref to the… #9

name: Release to NuGet
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup .NET SDK
uses: actions/setup-dotnet@v1
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test -c Release --no-build
- name: Pack nugets
run: dotnet pack -c Release --no-build --output .
- name: Push to NuGet
run: dotnet nuget push "*.nupkg" --api-key ${{secrets.nuget}} --source https://api.nuget.org/v3/index.json