diff options
| author | Fireblade <72758695+Firebladedoge229@users.noreply.github.com> | 2026-03-01 17:41:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-01 17:41:09 -0500 |
| commit | b2381555b22d19e95f67a4499b419cc339cad290 (patch) | |
| tree | 147b7ae12eba548ed0ae43be28b21c936a746c0d /.github | |
| parent | cd34348db5a85189c006ded69d54a9d2f668dfc5 (diff) | |
| parent | 4576e46e7ff0dcc985d38943d371badc6c332449 (diff) | |
Merge branch 'smartcmd:main' into main
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nightly.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml new file mode 100644 index 00000000..00f18f53 --- /dev/null +++ b/.github/workflows/nightly.yml @@ -0,0 +1,35 @@ +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: Setup msbuild + uses: microsoft/setup-msbuild@v2 + + - name: Build + run: MSBuild.exe MinecraftConsoles.sln /p:Configuration=Release /p:Platform="Windows64" + + - name: Zip Build + run: 7z a -r LCEWindows64.zip ./x64/Release/* + + - name: Update release + uses: andelf/nightly-release@main + + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: nightly + name: Nightly Release + files: LCEWindows64.zip
\ No newline at end of file |
