2023-01-03 15:54:30 +02:00
|
|
|
name: Publish
|
2022-12-21 17:50:05 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-01-03 15:54:30 +02:00
|
|
|
branches:
|
|
|
|
- main
|
2022-12-21 17:50:05 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
|
|
|
|
|
|
|
# Allow one concurrent deployment
|
|
|
|
concurrency:
|
2023-01-03 15:54:30 +02:00
|
|
|
group: pages
|
2022-12-21 17:50:05 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-01-03 15:54:30 +02:00
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
jobs:
|
2023-01-03 15:54:30 +02:00
|
|
|
publish:
|
2022-12-21 17:50:05 +02:00
|
|
|
environment:
|
|
|
|
name: github-pages
|
|
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2023-01-03 15:54:30 +02:00
|
|
|
- name: Setup Rust cache
|
2023-01-23 18:08:29 +02:00
|
|
|
uses: ./.github/workflows/setup-rust-cache
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
- name: Install mdbook
|
2023-01-23 18:08:29 +02:00
|
|
|
uses: ./.github/workflows/install-mdbook
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
- name: Build book
|
|
|
|
run: mdbook build
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
- name: Setup Pages
|
|
|
|
uses: actions/configure-pages@v2
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-pages-artifact@v1
|
|
|
|
with:
|
|
|
|
path: 'book'
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
id: deployment
|
|
|
|
uses: actions/deploy-pages@v1
|