8 releases

0.0.8 Feb 2, 2024
0.0.7 Jan 3, 2024
0.0.1 Sep 18, 2020

#163 in Template engine

Download history 7/week @ 2024-02-01 17/week @ 2024-02-15 12/week @ 2024-02-22 9/week @ 2024-03-28 17/week @ 2024-04-04

91 downloads per month

GPL-3.0-only

73KB
927 lines

Cydonia

cydonia ci

Usage

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

Github Action

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

LICENSE

GPL-3.0-only

Dependencies

~11–27MB
~348K SLoC