diff options
| author | Omri H <omrih.e@protonmail.com> | 2026-03-01 22:03:19 +0200 |
|---|---|---|
| committer | Omri H <omrih.e@protonmail.com> | 2026-03-01 22:03:47 +0200 |
| commit | 904f19b74cd406b77d1e6a48cfa389bc95119b40 (patch) | |
| tree | 2c077cbb9c75b739cbbfcf4d58447395ed8cefb7 /.github | |
| parent | 7378cbdc02b9953e045753ff886c86c58528f36a (diff) | |
fix workflow
Diffstat (limited to '.github')
| -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..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 |
