diff options
| author | Omri H <omrih.e@protonmail.com> | 2026-03-01 22:02:02 +0200 |
|---|---|---|
| committer | Omri H <omrih.e@protonmail.com> | 2026-03-01 22:02:02 +0200 |
| commit | 7378cbdc02b9953e045753ff886c86c58528f36a (patch) | |
| tree | c975e516bebfa7b0f74ee74c9de3d8f13cff5626 | |
| parent | b5111232aa13952f58ed1b3b3525ea825662b95c (diff) | |
feat: build workflow
| -rw-r--r-- | github/workflows/nightly.yml | 19 |
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 |
