Skip to content

chore(introduction): cleanup redundant paragraphs with architecture #24

chore(introduction): cleanup redundant paragraphs with architecture

chore(introduction): cleanup redundant paragraphs with architecture #24

Workflow file for this run

name: ci
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: zensical-${{ env.cache_id }}
path: ~/.cache
restore-keys: |
zensical-
- run: pip install zensical
- run: zensical build --config-file zensical.toml
- name: Copy CNAME for custom domain
run: cp docs/CNAME site/CNAME 2>/dev/null || true
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site