From 904f19b74cd406b77d1e6a48cfa389bc95119b40 Mon Sep 17 00:00:00 2001 From: Omri H Date: Sun, 1 Mar 2026 22:03:19 +0200 Subject: fix workflow --- .github/workflows/nightly.yml | 19 +++++++++++++++++++ github/workflows/nightly.yml | 19 ------------------- 2 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 .github/workflows/nightly.yml delete mode 100644 github/workflows/nightly.yml 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 diff --git a/github/workflows/nightly.yml b/github/workflows/nightly.yml deleted file mode 100644 index 31a4f68e..00000000 --- a/github/workflows/nightly.yml +++ /dev/null @@ -1,19 +0,0 @@ -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 -- cgit v1.2.3