diff --git a/.gitea/workflows/ps3.yaml b/.gitea/workflows/ps3.yaml new file mode 100644 index 00000000..c416563d --- /dev/null +++ b/.gitea/workflows/ps3.yaml @@ -0,0 +1,32 @@ +name: Build PS3 + +on: + workflow_dispatch: + +jobs: + build: + runs-on: windows-2022 + + strategy: + matrix: + configuration: [Release, Debug] + + steps: + - name: Checkout Repository + uses: https://github.com/actions/checkout@v4 + + - name: Setup MSBuild + uses: https://github.com/microsoft/setup-msbuild@v2 + + - name: Build Minecraft Legacy Console Edition + run: | + msbuild MinecraftConsoles.sln ` + /p:Configuration=${{ matrix.configuration }} ` + /p:Platform=PS3 ` + /m + + - name: Upload Release + Debug Artifacts + uses: https://github.com/actions/upload-artifact@v3 + with: + name: MinecraftClient-${{ matrix.configuration }} + path: x64/${{ matrix.configuration }} \ No newline at end of file