Crates.io | cydonia |
lib.rs | cydonia |
version | 0.0.8 |
source | src |
created_at | 2020-09-18 17:33:26.887758 |
updated_at | 2024-02-02 22:28:55.972452 |
description | The static site generator. |
homepage | https://github.com/clearloop/cydonia |
repository | https://github.com/clearloop/cydonia.git |
max_upload_size | |
id | 290185 |
size | 207,333 |
cargo install cydonia
cydonia init blog
cydonia serve blog
The minimal directory layout is like below, see cydonia.toml for the full configuration.
my-blog
├── cydonia.toml
└── posts
└── 2024-01-01-hello-world.md
name: Cydonia
on:
push:
branches: [main]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: clearloop/cydonia@0.0.7
- name: Build the site
run: cydonia build blog
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./blog/out
GPL-3.0-only