Skip to content

fixed networking description #6

fixed networking description

fixed networking description #6

Workflow file for this run

name: CI
on:
push:
branches: [ dev ]
paths:
- "**/*.csproj"
- "Directory.Build.props"
- ".github/workflows/ci.yml"
jobs:
pack-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
env:
VERSION_SUFFIX: ""
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release