Skip to content

A github action that installs a specific version of muon.

Notifications You must be signed in to change notification settings

muon-build/build-with-muon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

build-with-muon

Use this action to install a specific muon version.

Usage

Add the following step to your workflow:

- name: Install muon
  uses: muon-build/build-with-muon@v2
  with:
    version: edge # optional, specify a git tag or sha, defaults to edge
    git_url: "..." # optional, specify a different git url to clone from

A simple example:

name: CI
on:
  push:
    branches:
      - master
jobs:
  test-action:
    name: Build my project
    runs-on: ubuntu-latest

    steps:
      - name: Install muon
        uses: muon-build/build-with-muon@v2

      - name: Checkout
        uses: actions/checkout@v4

      - name: Build
        run: muon setup build

About

A github action that installs a specific version of muon.

Resources

Stars

Watchers

Forks

Packages

No packages published