Editorial: Update use of WebIDL "invoke a callback function" #39
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
# .github/workflows/auto-publish.yml | |
name: Reporting API publication | |
on: | |
pull_request: {} | |
push: | |
branches: [main] | |
jobs: | |
reporting: | |
name: Publish Reporting API WD | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: w3c/spec-prod@v2 | |
with: | |
SOURCE: index.src.html | |
DESTINATION: index.html | |
TOOLCHAIN: bikeshed | |
BUILD_FAIL_ON: warning | |
W3C_ECHIDNA_TOKEN: ${{ secrets.W3C_TR_TOKEN }} | |
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-web-perf/2021Apr/0005.html | |
W3C_BUILD_OVERRIDE: | | |
shortName: reporting | |
status: WD | |
GH_PAGES_BRANCH: gh-pages | |
network-reporting: | |
name: Publish Network Reporting API ED | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: w3c/spec-prod@v2 | |
with: | |
SOURCE: network-reporting.bs | |
TOOLCHAIN: bikeshed | |
BUILD_FAIL_ON: link-error | |
GH_PAGES_BRANCH: gh-pages |