Skip to content

Use giraffate/clippy-action@v1 #50

Use giraffate/clippy-action@v1

Use giraffate/clippy-action@v1 #50

Workflow file for this run

name: Pages
env:
CARGO_TERM_COLOR: always
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
name: Deploy pages
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Fetch latest code
uses: actions/checkout@v4
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: "latest"
- name: Build pages
run: mdbook build doc
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: doc/book