Skip to content

Update README.md

Update README.md #60

Workflow file for this run

name: GH Pages Deploy
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v2
- name: Install dependencies 🔧
run: cargo install mdbook
- name: Build 🏗️
run: mdbook build
- name: Deploy to GitHub Pages 🚀
if: ${{ github.event_name != 'pull_request' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: book