From fd54146157e35b6e6b2b721b7d77f99d07e33c17 Mon Sep 17 00:00:00 2001 From: Kowal <133172565+Koooowal@users.noreply.github.com> Date: Thu, 20 Nov 2025 16:09:07 +0100 Subject: [PATCH] Opis zmian zad4.44 --- .gitea/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c5f78db..3410632 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,30 +1,25 @@ name: First CI on: [push] - jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-dotnet@v3 with: dotnet-version: '8.0.x' - - run: dotnet restore - run: dotnet build - run: dotnet test - - - run: dotnet publish -o app -r linux-x64 --sc /p:PublishSingleFile=true,AssemblyName=app + - run: dotnet publish -o app -r linux-x64 --self-contained /p:PublishSingleFile=true /p:AssemblyName=app - run: tar cf app.tar app/ - - uses: actions/upload-artifact@v3 with: name: app.tar path: app.tar - test: runs-on: ubuntu-latest + needs: build steps: - uses: actions/download-artifact@v3 with: