Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluentci-io/hugo-plugin
CI/CD Plugin for Hugo
https://github.com/fluentci-io/hugo-plugin
cicd hugo wasm webassembly
Last synced: 5 days ago
JSON representation
CI/CD Plugin for Hugo
- Host: GitHub
- URL: https://github.com/fluentci-io/hugo-plugin
- Owner: fluentci-io
- License: mit
- Created: 2024-08-04T06:16:11.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-04T07:30:55.000Z (5 months ago)
- Last Synced: 2024-12-14T19:51:59.135Z (11 days ago)
- Topics: cicd, hugo, wasm, webassembly
- Language: Rust
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hugo Plugin
[![fluentci pipeline](https://shield.fluentci.io/x/hugo)](https://pkg.fluentci.io/hugo)
[![ci](https://github.com/fluentci-io/hugo-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/fluentci-io/hugo-plugin/actions/workflows/ci.yml)This plugin sets up your CI/CD pipeline with a specific version of [Hugo](https://gohugo.io/).
## 🚀 Usage
Add the following command to your CI configuration file:
```bash
fluentci run --wasm hugo build -s ./site -d ./public
```## Functions
| Name | Description |
| ------ | ----------------------------------------- |
| setup | Install Hugo |
| build | Build your site |## 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",
"build",
vec![
"-s", "./site",
"-d", "./public"
])?;
```## 📚 Examples
Github Actions:
```yaml
- name: Setup Fluent CI CLI
uses: fluentci-io/setup-fluentci@v5
with:
wasm: true
plugin: hugo
args: |
build -s ./site -d ./public
```