the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'smartcmd:main' into main

authored by

Fireblade and committed by
GitHub
b2381555 cd34348d

+35
+35
.github/workflows/nightly.yml
··· 1 + name: Nightly Release 2 + 3 + on: 4 + workflow_dispatch: 5 + push: 6 + branches: 7 + - 'main' 8 + 9 + jobs: 10 + build: 11 + name: Build Windows64 12 + runs-on: windows-latest 13 + 14 + steps: 15 + - name: Checkout 16 + uses: actions/checkout@v6 17 + 18 + - name: Setup msbuild 19 + uses: microsoft/setup-msbuild@v2 20 + 21 + - name: Build 22 + run: MSBuild.exe MinecraftConsoles.sln /p:Configuration=Release /p:Platform="Windows64" 23 + 24 + - name: Zip Build 25 + run: 7z a -r LCEWindows64.zip ./x64/Release/* 26 + 27 + - name: Update release 28 + uses: andelf/nightly-release@main 29 + 30 + env: 31 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 32 + with: 33 + tag_name: nightly 34 + name: Nightly Release 35 + files: LCEWindows64.zip