aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
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