Files
starter-workflows/pages/mdbook.yml
T

61 lines
1.6 KiB
YAML
Raw Normal View History

# Sample workflow for building and deploying a mdBook site to GitHub Pages
2022-08-13 22:16:20 +08:00
#
# To get started with mdBook see: https://rust-lang.github.io/mdBook/index.html
2022-08-13 22:16:20 +08:00
#
name: Deploy mdBook site to Pages
2022-08-13 22:16:20 +08:00
on:
# Runs on pushes targeting the default branch
push:
branches: [$default-branch]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
2022-08-13 22:16:20 +08:00
concurrency:
group: "pages"
cancel-in-progress: false
2022-08-13 22:16:20 +08:00
jobs:
# Build job
2022-08-13 22:16:20 +08:00
build:
runs-on: ubuntu-latest
env:
2023-12-04 13:02:46 -06:00
MDBOOK_VERSION: 0.4.36
2022-08-13 22:16:20 +08:00
steps:
- uses: actions/checkout@v4
- name: Install mdBook
2022-08-13 22:16:20 +08:00
run: |
2023-03-09 14:08:16 -05:00
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
2022-08-13 22:16:20 +08:00
rustup update
cargo install --version ${MDBOOK_VERSION} mdbook
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build with mdBook
2023-03-09 14:08:16 -05:00
run: mdbook build
2022-08-13 22:16:20 +08:00
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
2022-08-13 22:16:20 +08:00
with:
path: ./book
# Deployment job
2022-08-13 22:16:20 +08:00
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
2026-03-25 23:37:00 +00:00
uses: actions/deploy-pages@v5