Skip to content

Expose MaxConnsPerNode from AeroSpike to allow easier performance tun… #77

Expose MaxConnsPerNode from AeroSpike to allow easier performance tun…

Expose MaxConnsPerNode from AeroSpike to allow easier performance tun… #77

Workflow file for this run

name: Publish to NuGet
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
environment:
name: "Publish Release"
steps:
- uses: actions/checkout@v3
name: Check Out Code
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
- name: Restore Dependencies
run: dotnet restore src
- name: Build
run: dotnet build src --configuration Release --no-restore
- name: Publish NuGet
uses: alirezanet/publish-nuget@v3.1.0
with:
PROJECT_FILE_PATH: src/AeroSharp/AeroSharp.csproj
NUGET_KEY: ${{secrets.NUGET_API_KEY}}