Skip to content

Commit 33046e3

Browse files
CI: deploy ontology
1 parent d922c94 commit 33046e3

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

.github/workflows/build-spec.yaml

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,14 @@ jobs:
3232
uses: actions/checkout@v4
3333
- name: Setup Pages
3434
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
5043
- name: Upload artifact
5144
uses: actions/upload-pages-artifact@v3
5245
with:
@@ -55,4 +48,3 @@ jobs:
5548
- name: Deploy to GitHub Pages
5649
id: deployment
5750
uses: actions/deploy-pages@v4
58-

0 commit comments

Comments
 (0)