Skip to content

make ClientId nullable #9

make ClientId nullable

make ClientId nullable #9

Workflow file for this run

name: .NET CI/CD
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- name: Setup .NET
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: '8.0' # Specify your dotnet version here
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build -c Release --verbosity normal
- name: Pack
run: dotnet pack --no-build -c Release -o nupkg
- name: Push to NuGet
run: dotnet nuget push "**/*.nupkg" -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
if: github.ref == 'refs/heads/master'