Skip to content

ci: reformat benchmark table with categories, icons and color tiers #61

ci: reformat benchmark table with categories, icons and color tiers

ci: reformat benchmark table with categories, icons and color tiers #61

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main # Ou o nome da sua branch principal
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install mdBook
run: |
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.35/mdbook-v0.4.35-x86_64-unknown-linux-gnu.tar.gz | tar -xz
sudo mv mdbook /usr/local/bin/
- name: Build Book
run: mdbook build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book # O mdbook gera o site nesta pasta por padrão