Fix handshake tests (#1262) #541
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Documentation | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Setup Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
rust-version: stable | |
- name: Cache Dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cargo | |
key: cargo-cache-${{ hashFiles('Cargo.lock') }} | |
- name: Install dependencies | |
run: | | |
cargo install mdbook mdbook-mermaid mdbook-toc | |
- name: Build MDBook | |
run: | | |
if [ -d "docs" ]; then | |
cd docs | |
mdbook build | |
else | |
echo "Docs folder not found." | |
fi | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: docs/book | |
single-commit: true |