### Automated Publication Workflow Source: https://context7.com/w3c/core-aam/llms.txt GitHub Actions workflow for building and publishing the specification to the W3C Technical Reports system. ```yaml name: Build TR Document on: push: branches: [gh-pages] workflow_dispatch: jobs: tr: name: Build TR runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: w3c/spec-prod@v2 with: W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }} W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html VALIDATE_WEBIDL: false VALIDATE_MARKUP: false W3C_BUILD_OVERRIDE: | specStatus: CRD ``` -------------------------------- ### W3C Metadata Configuration Source: https://context7.com/w3c/core-aam/llms.txt Defines repository metadata for specification management and publication workflows. ```json { "group": "83726", "contacts": [ "daniel-montalvo" ], "policy": "restricted", "repo-type": "rec-track" } ``` -------------------------------- ### Accessing Specification Versions Source: https://context7.com/w3c/core-aam/llms.txt Commands to retrieve the latest editor's draft or the stable published version of the specification. ```bash # Editor's Draft (latest working version) curl -L https://w3c.github.io/core-aam/ # Published W3C Technical Report (stable version) curl -L https://www.w3.org/TR/core-aam-1.0/ ``` -------------------------------- ### Cloning the Specification Source Source: https://context7.com/w3c/core-aam/llms.txt Commands to clone the main ARIA repository where the core-aam source code is maintained. ```bash # Clone the main ARIA repository containing core-aam source git clone https://github.com/w3c/aria.git cd aria/core-aam # The specification follows ARIA suite build tools and structure # See the main ARIA readme for editing guidelines ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.