Break the code
Some checks failed
First CI / build (linux-x64) (push) Failing after 54s
First CI / build (win-x64) (push) Failing after 1m0s

This commit is contained in:
Michal 2024-11-25 11:05:04 +01:00
parent 5f571f2d4e
commit 73193fade9

View File

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