aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmri H <omrih.e@protonmail.com>2026-03-01 22:02:02 +0200
committerOmri H <omrih.e@protonmail.com>2026-03-01 22:02:02 +0200
commit7378cbdc02b9953e045753ff886c86c58528f36a (patch)
treec975e516bebfa7b0f74ee74c9de3d8f13cff5626
parentb5111232aa13952f58ed1b3b3525ea825662b95c (diff)
feat: build workflow
-rw-r--r--github/workflows/nightly.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/github/workflows/nightly.yml b/github/workflows/nightly.yml
new file mode 100644
index 00000000..31a4f68e
--- /dev/null
+++ b/github/workflows/nightly.yml
@@ -0,0 +1,19 @@
+name: Nightly Release
+
+on:
+ workflow-dispatch:
+ push:
+ branches:
+ - 'main'
+
+jobs:
+ build:
+ name: Build Windows64
+ runs-on: windows-latest
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v6
+
+ - name: Build
+ runs: msbuild MinecraftConsoles.sln -t:Windows64 -p:Configuration=Release \ No newline at end of file