Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluentci-io/vfox-plugin
A CI/CD Plugin for vfox
https://github.com/fluentci-io/vfox-plugin
asdf cicd development-tools github-actions plugin version-manager wasm
Last synced: about 2 months ago
JSON representation
A CI/CD Plugin for vfox
- Host: GitHub
- URL: https://github.com/fluentci-io/vfox-plugin
- Owner: fluentci-io
- License: mit
- Created: 2024-07-09T20:11:33.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-25T16:00:49.000Z (6 months ago)
- Last Synced: 2024-07-25T18:24:05.369Z (6 months ago)
- Topics: asdf, cicd, development-tools, github-actions, plugin, version-manager, wasm
- Language: Rust
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vfox Plugin
[![fluentci pipeline](https://shield.fluentci.io/x/vfox)](https://pkg.fluentci.io/vfox)
[![ci](https://github.com/fluentci-io/vfox-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/fluentci-io/vfox-plugin/actions/workflows/ci.yml)A Fluent CI plugin to setup [vfox](https://vfox.lhan.me/).
## 🚀 Usage
Add the following command to your CI configuration file:
```bash
fluentci run --wasm vfox setup
```## Functions
| Name | Description |
| ------- | ------------------------------------------------------ |
| setup | Download and install vfox |
| add | Add a plugin |
| install | Install a tool version [aliases: i] |
| use | Install tool version and add it to config [aliases: u] |## Code Usage
Add `fluentci-pdk` crate to your `Cargo.toml`:
```toml
[dependencies]
fluentci-pdk = "0.2.1"
```Use the following code to call the plugin:
```rust
use fluentci_pdk::dag;// ...
dag().call("https://pkg.fluentci.io/[email protected]?wasm=1", "setup", vec![])?;
```## 📚 Examples
Github Actions:
```yaml
- name: Setup Fluent CI CLI
uses: fluentci-io/setup-fluentci@v5
with:
wasm: true
plugin: vfox
args: |
setup
```