Skip to content

Added a new recipe

Added a new recipe #19

Workflow file for this run

name: github pages
on:
push:
branches:
- main
# Allow write access
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: '0.4.52' # We have small customizations in the theme, so we need to use a specific version of mdBook.
- run: mdbook build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book
force_orphan: true # ensures clean branch creation