the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1name: Build Minecraft Legacy Console Edition
2on:
3 workflow_dispatch:
4
5jobs:
6 build:
7 runs-on: windows-2022
8
9 strategy:
10 matrix:
11 configuration: [Release, Debug]
12
13 steps:
14 - name: Checkout Repository
15 uses: actions/checkout@v4
16
17 - name: Setup MSBuild
18 uses: microsoft/setup-msbuild@v2
19
20 - name: Build Minecraft Legacy Console Edition
21 run: |
22 msbuild MinecraftConsoles.sln `
23 /p:Configuration=${{ matrix.configuration }} `
24 /p:Platform=Windows64 `
25 /m
26
27 - name: Upload Release + Debug Artifacts
28 uses: actions/upload-artifact@v4
29 with:
30 name: MinecraftClient-${{ matrix.configuration }}
31 path: x64/${{ matrix.configuration }}