Multiplatfrom build with artifacts
All checks were successful
First CI / build (win-x64) (push) Successful in 59s
First CI / build (linux-x64) (push) Successful in 1m18s

This commit is contained in:
Jakub Patkowski 2024-11-22 14:13:55 +01:00
parent bc77c8d375
commit 8ea43daa72

View File

@ -13,4 +13,8 @@ jobs:
with:
dotnet-version: '8.0.x'
- run: dotnet restore
- run: dotnet publish -o app -r linux-x64 -c Release /p:PublishSingleFile=true /p:AssemblyName=app
- run: dotnet publish -o app -r ${{ matrix.rid }} -c Release /p:PublishSingleFile=true /p:AssemblyName=app
- uses: actions/upload-artifact@v3
with:
name: app-${{ matrix.rid }}
path: app/app