From 845dd3ba8c64550e2c4f7c0ee729cba8208f6928 Mon Sep 17 00:00:00 2001 From: himorin / Atsushi Shimono Date: Tue, 18 Jun 2024 01:52:23 +0900 Subject: [PATCH] Added ipr to gh-action --- .github/workflows/auto-publish-errata.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-publish-errata.yml b/.github/workflows/auto-publish-errata.yml index 9f16902..f344fc4 100644 --- a/.github/workflows/auto-publish-errata.yml +++ b/.github/workflows/auto-publish-errata.yml @@ -6,17 +6,26 @@ on: - main paths: - errata.html + - reports/implementation.html pull_request: {} jobs: generate-errata: - name: Generate errata + name: Generate errata and implementation report runs-on: ubuntu-latest # only linux supported at present + permissions: + contents: write + strategy: + max-parallel: 1 + matrix: + include: + - source: errata.html + - source: reports/implementation.html steps: - uses: actions/checkout@v4 - uses: w3c/spec-prod@v2 with: - SOURCE: errata.html + SOURCE: ${{ matrix.source }} TOOLCHAIN: respec VALIDATE_LINKS: false VALIDATE_PUBRULES: false