feat: test ps3 workflow

This commit is contained in:
2026-07-21 17:25:18 +00:00
parent c677cc0065
commit 12f7125335
+32
View File
@@ -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 }}