|
| 1 | +# Simple workflow for building and deploying a mdBook site to GitHub Pages |
| 2 | +name: Deploy mdBook site to GitHub Pages |
| 3 | + |
| 4 | +on: |
| 5 | + # Runs on pushes targeting the default branch |
| 6 | + push: |
| 7 | + branches: [main] |
| 8 | + |
| 9 | + # Allows you to run this workflow manually from the Actions tab |
| 10 | + workflow_dispatch: |
| 11 | + |
| 12 | +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages |
| 13 | +permissions: |
| 14 | + contents: read |
| 15 | + pages: write |
| 16 | + id-token: write |
| 17 | + |
| 18 | +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. |
| 19 | +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. |
| 20 | +concurrency: |
| 21 | + group: "pages" |
| 22 | + cancel-in-progress: false |
| 23 | + |
| 24 | +jobs: |
| 25 | + # Build job |
| 26 | + build: |
| 27 | + runs-on: ubuntu-latest |
| 28 | + env: |
| 29 | + MDBOOK_VERSION: 0.4.40 |
| 30 | + MDBOOK_ADMONISH: 1.17.0 |
| 31 | + MDBOOK_ALERTS: 0.6.8 |
| 32 | + MDBOOK_MERMAID: 0.14.0 |
| 33 | + MDBOOK_PAGETOC: 0.2.0 |
| 34 | + MDBOOK_TOC: 0.14.2 |
| 35 | + MDBOOK_YML_HEADER: 0.1.4 |
| 36 | + steps: |
| 37 | + - name: Checkout |
| 38 | + uses: actions/checkout@v4 |
| 39 | + |
| 40 | + - name: Update Rust toolchains and rustup |
| 41 | + run: | |
| 42 | + curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh |
| 43 | + rustup update |
| 44 | + - name: Install mdBook |
| 45 | + uses: taiki-e/install-action@v2 |
| 46 | + with: |
| 47 | + tool: cargo-binstall,mdbook@${{ env.MDBOOK_VERSION }} |
| 48 | + - name: Install mdBook processors |
| 49 | + uses: taiki-e/install-action@v2 |
| 50 | + with: |
| 51 | + tool: mdbook-admonish@${{ env.MDBOOK_ADMONISH }},mdbook-alerts@${{ env.MDBOOK_ALERTS }},mdbook-mermaid@${{ env.MDBOOK_MERMAID }},mdbook-pagetoc@${{ env.MDBOOK_PAGETOC }},mdbook-toc@${{ env.MDBOOK_TOC }},mdbook-yml-header@${{ env.MDBOOK_YML_HEADER }} |
| 52 | + |
| 53 | + - name: Setup Pages |
| 54 | + id: pages |
| 55 | + uses: actions/configure-pages@v5 |
| 56 | + |
| 57 | + - name: Build with mdBook |
| 58 | + run: mdbook build |
| 59 | + |
| 60 | + - name: Upload artifact |
| 61 | + uses: actions/upload-pages-artifact@v3 |
| 62 | + with: |
| 63 | + path: ./book |
| 64 | + |
| 65 | + # Deployment job |
| 66 | + deploy: |
| 67 | + environment: |
| 68 | + name: github-pages |
| 69 | + url: ${{ steps.deployment.outputs.page_url }} |
| 70 | + runs-on: ubuntu-latest |
| 71 | + needs: build |
| 72 | + steps: |
| 73 | + - name: Deploy to GitHub Pages |
| 74 | + id: deployment |
| 75 | + uses: actions/deploy-pages@v4 |
0 commit comments