Skip to content

Bump Grpc.AspNetCore.Server from 2.38.0 to 2.52.0 in /src/ToolPack.Exceptions.Base #10

Bump Grpc.AspNetCore.Server from 2.38.0 to 2.52.0 in /src/ToolPack.Exceptions.Base

Bump Grpc.AspNetCore.Server from 2.38.0 to 2.52.0 in /src/ToolPack.Exceptions.Base #10

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
env:
BUILD_CONFIG: 'Release'
SOLUTION: 'ToolPack.Exceptions.sln'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.5
- name: Restore dependencies
run: nuget restore $SOLUTION
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 5.0.x
- name: Build
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG --no-restore
- name: Run tests
run: dotnet test --verbosity normal
- name: Pack
run: dotnet pack $SOLUTION --configuration $BUILD_CONFIG --no-restore
- name: Publish
run: nuget push **\*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_NUNOHPINHEIRO}}