diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4ae28f0..d6fd75c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,4 +13,10 @@ 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 app -r ${{ matrix.rid }} --sc /p:PublishSingleFile=true + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: ${{ matrix.rid }}-artifacts + path: artifacts/ +