diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 278ecf0..861d09a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,4 +13,9 @@ jobs: with: dotnet-version: '8.0.x' - run: dotnet restore - - run: dotnet publish -o app -r linux-x64 --sc /p:PublishSingleFile=true,AssemblyName=app \ No newline at end of file + - run: dotnet publish -o app -r linux-x64 --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 + path: app-${{ matrix.rid }}.tar \ No newline at end of file