File tree 1 file changed +8
-16
lines changed
1 file changed +8
-16
lines changed Original file line number Diff line number Diff line change @@ -32,21 +32,14 @@ jobs:
32
32
uses : actions/checkout@v4
33
33
- name : Setup Pages
34
34
uses : actions/configure-pages@v5
35
- - uses : w3c/spec-prod@v2
36
- with :
37
- TOOLCHAIN : bikeshed
38
-
39
- # Modify as appropriate
40
- GH_PAGES_BRANCH : gh-pages
41
-
42
- # if your doc isn’t in the root folder,
43
- # or Bikeshed otherwise can’t find it:
44
- SOURCE : spec.bs
45
-
46
- # output filename defaults to your input
47
- # with .html extension instead,
48
- # but if you want to customize it:
49
- DESTINATION : index.html
35
+ - name : Build spec
36
+ run : |
37
+ echo "Installing bikeshed"
38
+ sudo apt install pipx
39
+ pipx install bikeshed
40
+ echo "Building spec"
41
+ bikeshed spec spec.bs
42
+ mv spec.html index.html
50
43
- name : Upload artifact
51
44
uses : actions/upload-pages-artifact@v3
52
45
with :
55
48
- name : Deploy to GitHub Pages
56
49
id : deployment
57
50
uses : actions/deploy-pages@v4
58
-
You can’t perform that action at this time.
0 commit comments