Fix casing in IRI #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
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 | |
- name: Deploy all other files first | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: . # The folder the action should deploy. | |
- 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 | |