Skip to content

Commit 7b2c9ab

Browse files
authored
Create publish.yml
1 parent 543f4b6 commit 7b2c9ab

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/publish.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This workflow converts your bikeshed (.bs) file to html and pushes to gh-pages
2+
3+
name: CI
4+
5+
# Controls when the action will run. Triggers the workflow on push or pull request
6+
# events but only for the main branch
7+
on:
8+
push:
9+
branches: [ main ]
10+
pull_request:
11+
branches: [ main ]
12+
jobs:
13+
main:
14+
name: Build, Validate and Deploy
15+
runs-on: ubuntu-20.04
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: w3c/spec-prod@v1
19+
with:
20+
GH_PAGES_BRANCH: gh-pages
21+
VALIDATE_LINKS: false
22+
VALIDATE_MARKUP: false

0 commit comments

Comments
 (0)