-
Notifications
You must be signed in to change notification settings - Fork 22
77 lines (66 loc) · 2.77 KB
/
auto-publish.yml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Workflow based on the main w3c/spec-prod action example:
# https://github.com/w3c/spec-prod/#basic-usage
#
# Custom code added to generate the CDDL messages appendix for inclusion in the
# generated specification file.
name: Build, Validate, and Deploy
on:
# Worflow runs on pull requests where it makes sure that the spec can still be
# generated, that markup is valid and that there are no broken links, as
# well as on pushes to the default branch where it also deploys the generated
# spec to the gh-pages branch. The "workflow_dispatch" hook allows admins to
# also trigger the workflow manually from GitHub's UI.
pull_request: {}
push:
branches: [main]
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
# See doc at https://github.com/actions/checkout/
- name: Checkout repository
uses: actions/checkout@v4
# See doc at https://github.com/actions/setup-python/
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install Pygments
# Note: the step actually generates all CDDL message pages, but the
# w3c/spec-prod action cleans these files after each build, so we'll
# have to generate them again each time.
- name: Generate messages_appendix.html
run: python scripts/pygmentize_dir.py
# See doc at https://github.com/w3c/spec-prod/#spec-prod
# The action only deploys the generated spec to the gh-pages branch when
# the workflow was triggered by a push to the default branch.
- name: Build and validate index.html, push to gh-pages branch if needed
uses: w3c/spec-prod@v2
with:
GH_PAGES_BRANCH: gh-pages
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }}
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-secondscreen/2022Apr/0007.html
W3C_BUILD_OVERRIDE: |
status: WD
- name: Generate application_messages.html
run: python scripts/pygmentize_dir.py
- name: Build and validate application.html, push to gh-pages branch if needed
uses: w3c/spec-prod@v2
with:
SOURCE: application.bs
TOOLCHAIN: bikeshed
GH_PAGES_BRANCH: gh-pages
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_APPLICATION }}
- name: Generate network_messages.html
run: python scripts/pygmentize_dir.py
- name: Build and validate network.html, push to gh-pages branch if needed
uses: w3c/spec-prod@v2
with:
SOURCE: network.bs
TOOLCHAIN: bikeshed
GH_PAGES_BRANCH: gh-pages
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_NETWORK }}