Skip to content

docs: update readme #28

docs: update readme

docs: update readme #28

Workflow file for this run

name: GitHub Pages
on:
push:
paths:
- '.github/workflows/gh-pages.yml'
- 'docs/src/**'
- 'docs/book.toml'
pull_request:
workflow_dispatch:
defaults:
run:
working-directory: docs
env:
CARGO_TERM_COLOR: always
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: 'latest'
- run: mdbook build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
cname: hatsu.cli.rs
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/book