We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc19bc7 commit ce44942Copy full SHA for ce44942
.github/workflows/spec-update.yml
@@ -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