Core: fix TraceRouteAsync could send more ICMP than required #317
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET Core | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Build with dotnet (net8.0) | |
run: dotnet build --configuration Release -f net8.0 | |
- name: Build NuGet Packages | |
run: dotnet pack --configuration Release --output Redist | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: NuGet Packages | |
path: Redist/*.nupkg | |
if-no-files-found: error |