aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorOmri H <omrih.e@protonmail.com>2026-03-01 22:03:19 +0200
committerOmri H <omrih.e@protonmail.com>2026-03-01 22:03:47 +0200
commit904f19b74cd406b77d1e6a48cfa389bc95119b40 (patch)
tree2c077cbb9c75b739cbbfcf4d58447395ed8cefb7 /.github/workflows
parent7378cbdc02b9953e045753ff886c86c58528f36a (diff)
fix workflow
Diffstat (limited to '.github/workflows')
-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..ae5f2ed8
--- /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
+ run: msbuild MinecraftConsoles.sln -t:Windows64 -p:Configuration=Release \ No newline at end of file