1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Publish human mapping site
# Builds and deploys the read-only human_mapping.json viewer (generate_mapping_site) to GitHub
# Pages on every push to main - both halves of that file: the node mapping, as two annotated ASTs
# and as code, and every hand-painted account of the same diff as text, stacked in the code view
# for the reader to flip between. Nothing this workflow generates is committed to the repo - the
# HTML/CSS/JS is built fresh from src/test/data/diffs/ each run. Requires Pages to be enabled once
# in this repo's Settings -> Pages, with source set to "GitHub Actions" (a one-time manual step,
# not something a workflow file can do on its own).
on:
push:
branches:
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Only one Pages deployment at a time; a newer push should win over one still in flight rather
# than queue behind it.
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
key: pages
- name: Generate site
run: cargo run --release --features test-fixtures --bin generate_mapping_site -- --out site
- uses: actions/configure-pages@v6
# v4 dropped dotfiles from the artifact. `generate_mapping_site` wipes and recreates its
# output directory holding only index.html, fixtures/ and assets/ - no dotfiles, and Pages
# deployed from an Actions artifact never runs Jekyll, so no .nojekyll is needed either. If
# the generator ever starts emitting one, this action will silently drop it.
- uses: actions/upload-pages-artifact@v5
with:
path: site
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v5