From c34330e0e2128a8b87f888e8846770ff4c54f4d7 Mon Sep 17 00:00:00 2001 From: mykola-derevianko Date: Fri, 21 Nov 2025 10:59:42 +0100 Subject: [PATCH] small fix --- .gitea/workflows/ci.yml | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ab33e77..d801d4e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,22 +1,23 @@ 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: tar cf app.tar app/ - - uses: actions/upload-artifact@v3 - with: - name: app.tar - path: app.tar + 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: tar cf app.tar app/ + - uses: actions/upload-artifact@v3 + with: + name: app.tar + path: app.tar test: steps: - uses: actions/download-artifact@v3