Skip to content

Updated .gitignore #127

Updated .gitignore

Updated .gitignore #127

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
# deployments permission to deploy GitHub pages website
deployments: write
# contents permission to update benchmark contents in gh-pages branch
contents: write
steps:
- uses: actions/checkout@v2
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: "latest"
- name: Generate book
working-directory: contrib/docs
run: mdbook build
- name: Publish book to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./contrib/docs/book
destination_dir: docs