Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluentci-io/capistrano-plugin
CI/CD Plugin for Capistrano
https://github.com/fluentci-io/capistrano-plugin
capistrano cicd nix wasm
Last synced: about 2 months ago
JSON representation
CI/CD Plugin for Capistrano
- Host: GitHub
- URL: https://github.com/fluentci-io/capistrano-plugin
- Owner: fluentci-io
- License: mit
- Created: 2024-07-26T06:12:27.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-03T03:44:10.000Z (5 months ago)
- Last Synced: 2024-10-10T23:22:06.632Z (3 months ago)
- Topics: capistrano, cicd, nix, wasm
- Language: Rust
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Capistrano Plugin
[![fluentci pipeline](https://shield.fluentci.io/x/capistrano)](https://pkg.fluentci.io/capistrano)
[![ci](https://github.com/fluentci-io/capistrano-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/fluentci-io/capistrano-plugin/actions/workflows/ci.yml)This plugin install and run [Capistrano](https://capistranorb.com/) on your CI/CD pipelines.
## 🚀 Usage
Add the following command to your CI configuration file:
```bash
fluentci run --wasm capistrano deploy production
```## Functions
| Name | Description |
| --------- | ------------------------------------------ |
| setup | Install Capistrano |
| deploy | Deploy your application using Capistrano |## 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", "deploy", vec!["production"])?;
```## 📚 Examples
Github Actions:
```yaml
- name: Setup Fluent CI CLI
uses: fluentci-io/setup-fluentci@v5
with:
wasm: true
plugin: capistrano
args: |
setup
- name: Show capistrano help
run: |
flox activate -- type cap
flox activate -- cap --version
flox activate -- cap --help
```