Skip to content

bugs improvement

bugs improvement #2

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: '9.0.304'
- name: Restore
run: dotnet restore --configfile ./nuget.config
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Pack
run: dotnet pack --no-build --configuration Release -o ./artifacts /p:VersionSuffix="${{ env.VERSION_SUFFIX }}"