avoid parser issue with ampersand and delete unwanted build file #157
Workflow file for this run
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: | |
pull_request: {} | |
push: | |
branches: [main] | |
jobs: | |
main: | |
name: Build gh-pages | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
strategy: | |
max-parallel: 1 | |
matrix: | |
include: | |
- source: common-input-aspects/NOTE-act-rules-common-aspects.bs | |
destination: NOTE-common-input-aspects.html | |
- source: act-rules-format/act-rules-format.bs | |
destination: act-rules-format.html | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: w3c/spec-prod@v2 | |
with: | |
TOOLCHAIN: bikeshed | |
SOURCE: ${{ matrix.source }} | |
DESTINATION: ${{ matrix.destination }} | |
GH_PAGES_BRANCH: gh-pages | |
VALIDATE_WEBIDL: false | |
VALIDATE_MARKUP: false |