Skip to content

Commit 96a9eec

Browse files
authored
chore: Added ipr to gh-action (#167)
1 parent 76308a8 commit 96a9eec

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/auto-publish-errata.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,26 @@ on:
66
- main
77
paths:
88
- errata.html
9+
- reports/implementation.html
910
pull_request: {}
1011

1112
jobs:
1213
generate-errata:
13-
name: Generate errata
14+
name: Generate errata and implementation report
1415
runs-on: ubuntu-latest # only linux supported at present
16+
permissions:
17+
contents: write
18+
strategy:
19+
max-parallel: 1
20+
matrix:
21+
include:
22+
- source: errata.html
23+
- source: reports/implementation.html
1524
steps:
1625
- uses: actions/checkout@v4
1726
- uses: w3c/spec-prod@v2
1827
with:
19-
SOURCE: errata.html
28+
SOURCE: ${{ matrix.source }}
2029
TOOLCHAIN: respec
2130
VALIDATE_LINKS: false
2231
VALIDATE_PUBRULES: false

0 commit comments

Comments
 (0)