Skip to content

Bump csharpier from 0.28.1 to 0.28.2 (#236) #233

Bump csharpier from 0.28.1 to 0.28.2 (#236)

Bump csharpier from 0.28.1 to 0.28.2 (#236) #233

Workflow file for this run

name: Build and Publish Main Branch
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --verbosity normal
- name: Publish to NuGet
run: dotnet nuget push **/*.nupkg -s "https://api.nuget.org/v3/index.json" -k ${{ secrets.NUGET_API_KEY }} --skip-duplicate