Skip to content

Commit

Permalink
Create spec update flow
Browse files Browse the repository at this point in the history
  • Loading branch information
kmonsen authored Aug 30, 2024
1 parent cc19bc7 commit ce44942
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/spec-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Spec Update
on:
workflow_dispatch: {}
pull_request: {}
push:
branches: [main]
jobs:
main:
name: Build, Validate and Deploy
runs-on: ubuntu-20.04
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: w3c/spec-prod@v2
with:
TOOLCHAIN: bikeshed

# Modify as appropriate
GH_PAGES_BRANCH: gh-pages

# if your doc isn't in the root folder,
# or Bikeshed otherwise can't find it:
SOURCE: spec.bs

# output filename defaults to your input
# with .html extension instead,
# but if you want to customize it:
DESTINATION: index.html

0 comments on commit ce44942

Please sign in to comment.