From be20cef2cc8a1878216476869ba01c917254e63e Mon Sep 17 00:00:00 2001 From: Anton Ovod Date: Thu, 20 Nov 2025 13:10:10 +0100 Subject: [PATCH] Multiplatform ci pipeline fix --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8288c9f..262bb7f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,8 +15,8 @@ jobs: - run: dotnet restore - run: dotnet build - run: dotnet test - - run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true,AssemblyName=app - - run: tar cf app.tar app/ + - run: dotnet publish -o app ${{ matrix.rid }} --sc /p:PublishSingleFile=true,AssemblyName=app + - run: tar cf app-${{ matrix.rid }}.tar app/ - uses: actions/upload-artifact@v3 with: name: app-${{ matrix.rid }}.tar