Skip to content

Merge pull request #73 from PierreBeucher/release-0.8.0 #17

Merge pull request #73 from PierreBeucher/release-0.8.0

Merge pull request #73 from PierreBeucher/release-0.8.0 #17

Workflow file for this run

name: Publish documentation
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install mdBook
run: >
curl -sL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-musl.tar.gz |
tar xz -C /usr/local/bin
- name: Build doc
run: mdbook build docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/book
publish:
runs-on: ubuntu-latest
needs: build
if: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/mdbook' }}
environment:
name: github-pages
permissions:
pages: write
id-token: write
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4