diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 494d474..5ea52ba 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 ${{matrix.rid}} --sc /p:PublishSingleFile=true \ No newline at end of file + - run: dotnet publish -o app -r ${{matrix.rid}} --sc /p:PublishSingleFile=true + - run: tar cf app.tar app/ + - uses: actions/upload-artifact@v3 + with: + name: app.tar + path: app.tar \ No newline at end of file