Skip to content

fluentci-io/mise-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mise Plugin

fluentci pipeline ci

A Fluent CI plugin to setup mise.

🚀 Usage

Add the following command to your CI configuration file:

fluentci run --wasm mise setup

Functions

Name Description
setup Download and install mise
install Install a tool version [aliases: i]
exec Execute a command with tool(s) set [aliases: x]
use Install tool version and add it to config [aliases: u]

Code Usage

Add fluentci-pdk crate to your Cargo.toml:

[dependencies]
fluentci-pdk = "0.2.1"

Use the following code to call the plugin:

use fluentci_pdk::dag;

// ...

dag().call("https://pkg.fluentci.io/mise@v0.1.0?wasm=1", "setup", vec![])?;

📚 Examples

Github Actions:

- name: Setup Fluent CI CLI
  uses: fluentci-io/setup-fluentci@v5
  with:
    wasm: true
    plugin: mise
    args: |
      setup