Skip to content

Updated to .NET 8

Updated to .NET 8 #38

Workflow file for this run

name: .NET CI/CD Nuget
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Push
run: dotnet nuget push "**/*.nupkg" --skip-duplicate --api-key ${{secrets.BLAZORSPINNER_KEY}} --source https://api.nuget.org/v3/index.json