Skip to content

feat(codegen): handle backward jumps in jump table (#286) #91

feat(codegen): handle backward jumps in jump table (#286)

feat(codegen): handle backward jumps in jump table (#286) #91

Workflow file for this run

name: Docs
on:
push:
branches: [main]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: "latest"
- name: Build the book
run: cd docs && mdbook build
- name: Setup rust toolchain
uses: dtolnay/rust-toolchain@nightly
- name: Build rust docs
run: |
RUSTDOCFLAGS="--enable-index-page -Zunstable-options" cargo doc \
--workspace \
--no-deps \
--document-private-items \
--all-features
- name: Assemble docs
run: mv target/doc docs/book/rustdocs
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/book