Revert to 808283f3641a124af76204d3db2e95e413228027 #110
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
# https://w3c.github.io/spec-prod/#examples | |
# Create a file called .github/workflows/auto-publish.yml | |
name: CI | |
on: | |
push: | |
branches: [main] | |
jobs: | |
main: | |
name: Deploy to GitHub pages | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: w3c/spec-prod@v2 | |
with: | |
GH_PAGES_BRANCH: gh-pages | |
TOOLCHAIN: respec | |
SOURCE: spec.html | |
DESTINATION: index.html | |
VALIDATE_MARKUP: false | |