This GitHub action facilitates the installation of Minimina within your GitHub workflow. Upon successful execution, Minimina files are stored at $MINIMINA_HOME\.minimina
.
To install Minimina as a .deb
package from a predefined stream:
jobs:
setup-minimina:
runs-on: ubuntu-latest
steps:
- uses: MinaFoundation/install-minimina-action@v1
with:
stream: 'stable' # Options: 'stable' or 'unstable';
# Defaults to 'stable' if omitted.
To install and build Minimina directly from a given commit hash or branch:
jobs:
setup-minimina:
runs-on: ubuntu-latest
steps:
- uses: MinaFoundation/install-minimina-action@v1
with:
commit_or_branch: 'main' # Replace 'main' with your desired commit or branch
⚠️ Note: Ensure both Rust andcargo
are present in your environment when opting to install and build from a commit or branch.
For a more comprehensive guide and additional examples, please refer to the examples.yml workflow.