From 7378cbdc02b9953e045753ff886c86c58528f36a Mon Sep 17 00:00:00 2001 From: Omri H Date: Sun, 1 Mar 2026 22:02:02 +0200 Subject: [PATCH] feat: build workflow --- github/workflows/nightly.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 github/workflows/nightly.yml 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