aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvoid_17 <61356189+void2012@users.noreply.github.com>2026-03-02 06:21:28 +0700
committerGitHub <noreply@github.com>2026-03-02 06:21:28 +0700
commit5b5b9f60721f40f1ddebc4629b9e2802de646fb6 (patch)
tree8b1cad8a4af172d2181bb463f0975c4b729a0b13
parent1d9eb31a699929ef49506c3ec3e9f73bf448f789 (diff)
parentb2381555b22d19e95f67a4499b419cc339cad290 (diff)
Merge pull request #84 from Firebladedoge229/main
Create Manual Workflow for LCE Artifact Creation
-rw-r--r--.github/workflows/build.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 00000000..a499ff84
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,31 @@
+name: Build Minecraft Legacy Console Edition
+on:
+ workflow_dispatch:
+
+jobs:
+ build:
+ runs-on: windows-2022
+
+ strategy:
+ matrix:
+ configuration: [Release, Debug]
+
+ steps:
+ - name: Checkout Repository
+ uses: actions/checkout@v4
+
+ - name: Setup MSBuild
+ uses: microsoft/setup-msbuild@v2
+
+ - name: Build Minecraft Legacy Console Edition
+ run: |
+ msbuild MinecraftConsoles.sln `
+ /p:Configuration=${{ matrix.configuration }} `
+ /p:Platform=Windows64 `
+ /m
+
+ - name: Upload Release + Debug Artifacts
+ uses: actions/upload-artifact@v4
+ with:
+ name: MinecraftClient-${{ matrix.configuration }}
+ path: x64/${{ matrix.configuration }}