Skip to content

Rewrite BCPD description of the colour data format #1221

Rewrite BCPD description of the colour data format

Rewrite BCPD description of the colour data format #1221

name: Build and deploy an updated version of the website
on:
push:
paths-ignore:
- "historical/**"
- "README.md"
- "LICENSE"
pull_request:
paths-ignore:
- "historical/**"
- "README.md"
- "LICENSE"
schedule:
- cron: "42 16 1/7 * *"
# 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.
concurrency:
group: "pages"
cancel-in-progress: false
env:
MDBOOK_VERSION: 0.5.2
MDBOOK_LINKCHECK2_VERSION: 0.12.0
jobs:
build:
name: Build Pan Docs
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@stable
- name: Checkout pandocs
uses: actions/checkout@v4
with:
path: pandocs
- name: Cache Rust build dir
uses: Swatinem/rust-cache@v2
with:
workspaces: pandocs/
- name: Install mdbook
run: cargo install mdbook@${MDBOOK_VERSION}
- name: Install static-sitemap-cli
run: npm install static-sitemap-cli
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r pandocs/requirements.txt
- name: Build
working-directory: pandocs/
env:
MDBOOK_BUILD__CREATE_MISSING: "false" # Prevent creating missing files in SUMMARY.md
run: |
mdbook build
- name: Generate sitemap
run: |
cd pandocs/docs/pandocs/
npx sscli --no-clean --base https://gbdev.io/pandocs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: pandocs/docs/pandocs/
linkcheck:
name: Check for dead links
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@stable
- name: Checkout pandocs
uses: actions/checkout@v4
with:
path: pandocs
- name: Cache Rust build dir
uses: Swatinem/rust-cache@v2
with:
workspaces: pandocs/
- name: Install mdbook dependencies
run: |
cargo install mdbook@${MDBOOK_VERSION}
cargo install mdbook-linkcheck2@${MDBOOK_LINKCHECK2_VERSION}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r pandocs/requirements.txt --break-system-packages
- name: Check links
working-directory: pandocs/
run: mdbook build
deploy:
name: Deploy to GitHub pages
# Do not run this unless *pushing* to `master`.
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4