This repository was archived by the owner on Mar 22, 2026. It is now read-only.
Merge branch 'smartcmd:main' into main #33
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Nightly Release | |
| permissions: | |
| contents: write | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'main' | |
| paths-ignore: | |
| - '.gitignore' | |
| - '*.md' | |
| - '.github/*.md' | |
| 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=Debug /p:Platform="Windows64" | |
| - name: lazyfix | |
| shell: pwsh | |
| run: Copy-Item -Path "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Redist/MSVC/*/debug_nonredist/x64/*/*.dll" -Destination "./x64/Debug/"; Copy-Item -Path "C:/Windows/System32/ucrtbased.dll" -Destination "./x64/Debug/" | |
| - name: Zip Build | |
| run: 7z a -r LCEWindows64.zip ./x64/Debug/* | |
| - name: Update release | |
| uses: andelf/nightly-release@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: nightly | |
| name: Nightly Release | |
| body: | | |
| Debug Version of minecraftconsoles | |
| files: | | |
| LCEWindows64.zip | |
| ./x64/Debug/Minecraft.Client.exe | |
| ./x64/Debug/Minecraft.Client.pdb |