Skip to content

Remove .NET standard support - out of support (#18) #54

Remove .NET standard support - out of support (#18)

Remove .NET standard support - out of support (#18) #54

Workflow file for this run

name: Nuget
on:
push:
branches: [ master ]
jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v2
with:
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Push to NuGet
run: pwsh ./publish.ps1 -key "${{ secrets.NUGET_API_KEY }}"