A comprehensive installer for the popular Minecraft instance manager MultiMC. https://multimc.org/ Disclaimer: I am not associated with MultiMC. I have just created an auto-building installer for it.
win64 is the only supported platform right now
- Download the install from the link above.
- Run the installer executable.
- Follow the on-screen instructions to complete the installation process.
- Once installed, launch MultiMC from your Start menu or desktop shortcut.
This repository includes a GitHub Action workflow that can automatically build and release the MSI installer. To trigger a new build:
- Go to the "Actions" tab in the repository
- Select the "Build and Release MSI Installer" workflow
- Click "Run workflow"
- Enter the version number and MultiMC download URL (defaults to the development build)
- Click "Run workflow" to start the build process
The workflow will:
- Download the specified MultiMC version
- Build an MSI installer
- Upload an artifact to the workflows run when finished
- Recode into an actual installer
- Workflow to automate releases
- Support for linux
To build the MSI installer locally on Windows:
- Install the WiX Toolset
- Run the build script:
.\build-msi-full.ps1 -Version "1.0.0" -DownloadUrl "https://files.multimc.org/downloads/mmc-develop-win32.zip"
- The MSI will be created in the
build
directory