diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5c3cfd6..1f84692 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,4 +13,9 @@ jobs: with: dotnet-version: '6.0.x' - run: dotnet restore - - run: dotnet publish -o app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true + - run: dotnet publish -o ${{ matrix.rid}}.app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true + - run: tar cf ${{ matrix.rid}}.app.tar app/${{ matrix.rid}}.app + - uses: actions/upload-artifact@v3 + with: + name: app.tar + path: ${{ matrix.rid}}/app.tar \ No newline at end of file