-
Notifications
You must be signed in to change notification settings - Fork 27
47 lines (46 loc) · 1.25 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
name: CI
on:
pull_request: {}
push:
branches: [main]
jobs:
main:
name: Build, Validate and Deploy
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: w3c/spec-prod@v2
with:
SOURCE: index.html
DESTINATION: index.html
TOOLCHAIN: respec
GH_PAGES_BRANCH: gh-pages
VALIDATE_MARKUP: false
- uses: w3c/spec-prod@v2
with:
SOURCE: symbols/index.html
DESTINATION: symbols/index.html
TOOLCHAIN: respec
GH_PAGES_BRANCH: gh-pages
VALIDATE_MARKUP: false
- uses: w3c/spec-prod@v2
with:
SOURCE: help/index.html
DESTINATION: help/index.html
TOOLCHAIN: respec
GH_PAGES_BRANCH: gh-pages
VALIDATE_MARKUP: false
- uses: w3c/spec-prod@v2
with:
SOURCE: tools/index.html
DESTINATION: tools/index.html
TOOLCHAIN: respec
GH_PAGES_BRANCH: gh-pages
VALIDATE_MARKUP: false
- uses: w3c/spec-prod@v2
with:
SOURCE: requirements/index.html
DESTINATION: requirements/index.html
TOOLCHAIN: respec
GH_PAGES_BRANCH: gh-pages
VALIDATE_MARKUP: false