Clarify how manifest image resources are fetched #409
This file contains hidden or 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: Node CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: {} | |
| jobs: | |
| validate-and-publish: | |
| name: Validate and Publish | |
| runs-on: ubuntu-latest # only linux supported at present | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: w3c/spec-prod@v2 | |
| with: | |
| TOOLCHAIN: respec | |
| VALIDATE_LINKS: false | |
| VALIDATE_PUBRULES: false | |
| GH_PAGES_BRANCH: gh-pages | |
| W3C_API_KEY: ${{ secrets.W3C_API_KEY }} | |
| W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }} | |
| W3C_WG_DECISION_URL: "https://lists.w3.org/Archives/Public/public-webapps/2014JulSep/0627.html" | |
| W3C_NOTIFICATIONS_CC: "${{ secrets.CC }}" | |
| W3C_BUILD_OVERRIDE: | | |
| specStatus: WD |