Skip to content

Commit ce44942

Browse files
authored
Create spec update flow
1 parent cc19bc7 commit ce44942

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/spec-update.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Spec Update
2+
on:
3+
workflow_dispatch: {}
4+
pull_request: {}
5+
push:
6+
branches: [main]
7+
jobs:
8+
main:
9+
name: Build, Validate and Deploy
10+
runs-on: ubuntu-20.04
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: w3c/spec-prod@v2
16+
with:
17+
TOOLCHAIN: bikeshed
18+
19+
# Modify as appropriate
20+
GH_PAGES_BRANCH: gh-pages
21+
22+
# if your doc isn't in the root folder,
23+
# or Bikeshed otherwise can't find it:
24+
SOURCE: spec.bs
25+
26+
# output filename defaults to your input
27+
# with .html extension instead,
28+
# but if you want to customize it:
29+
DESTINATION: index.html

0 commit comments

Comments
 (0)