Skip to content

Commit

Permalink
Docs: The Kailua Book (#4)
Browse files Browse the repository at this point in the history
* initial overview

* nits

* project nits

* cleanup migration, document fast-track

* update kona

* document verifier deployment

* dispute resolution deployment guide

* update kzg patch + cleanup

* treasury & game config + hardening

* operator docs

* update kona branch + book styling

* remove geth dep

* setup params docs

* switch devnet to debug builds

* update kona

* gh pages + nits

* editorial nits

* Safe usage tips

* nit: remove docker cmd for safe-cli
  • Loading branch information
hashcashier authored Dec 20, 2024
1 parent a5887d0 commit 9ebfe1f
Show file tree
Hide file tree
Showing 52 changed files with 7,541 additions and 3,752 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: GitHub Pages

on:
workflow_dispatch:
push:
branches:
- main
pull_request:

jobs:
publish:
name: Publish to GitHub Pages
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- uses: risc0/risc0/.github/actions/rustup@main

- name: Setup mdBook
run: cargo install mdbook mdbook-mermaid mdbook-admonish

- name: Build book
working-directory: ./book
run: mdbook build

- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book/book
Loading

0 comments on commit 9ebfe1f

Please sign in to comment.