From 2f8f2d179ee978e26da1054fbdd700d0f881698c Mon Sep 17 00:00:00 2001 From: Imran Siddique Date: Wed, 17 Jun 2026 16:34:37 -0700 Subject: [PATCH 1/2] fix(dns): update custom domain to trace.agentrust-io.com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CNAME file: agentrust.io → trace.agentrust-io.com site_url: https://agentrust.io/trace → https://trace.agentrust-io.com Co-Authored-By: Claude Sonnet 4.6 --- CNAME | 2 +- mkdocs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CNAME b/CNAME index 9884b64..ff27690 100644 --- a/CNAME +++ b/CNAME @@ -1 +1 @@ -agentrust.io +trace.agentrust-io.com diff --git a/mkdocs.yml b/mkdocs.yml index f71fb4f..97fb835 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,6 @@ site_name: TRACE site_description: Trust Runtime Attestation and Compliance Evidence — open attestation standard for agentic AI governance -site_url: https://agentrust.io/trace +site_url: https://trace.agentrust-io.com repo_url: https://github.com/agentrust-io/trace-spec repo_name: agentrust-io/trace-spec edit_uri: edit/main/ From c55e3981ed92bcc48803b3ddd7f67edf573e0a9c Mon Sep 17 00:00:00 2001 From: Imran Siddique Date: Wed, 17 Jun 2026 16:41:38 -0700 Subject: [PATCH 2/2] fix(ci): remove duplicate concurrency block causing workflow parse error Two concurrency: keys in the same YAML mapping caused every push-triggered run to fail immediately with a workflow file issue. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/docs.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d68e4ac..f6b1685 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,12 +19,6 @@ on: permissions: contents: write - pages: write - id-token: write - -concurrency: - group: docs-deploy - cancel-in-progress: false concurrency: group: docs-deploy @@ -60,14 +54,10 @@ jobs: BUILD=.docs_build mkdir -p $BUILD - # Copy docs/ subtree (preserves paths: docs/crosswalks/, docs/integration/, etc.) if [ -d docs ]; then cp -r docs $BUILD/docs; fi - - # Copy spec/ and examples/ if [ -d spec ]; then cp -r spec $BUILD/spec; fi if [ -d examples ]; then cp -r examples $BUILD/examples; fi - # Root-level files referenced in nav for fname in README.md CHANGELOG.md CONTRIBUTING.md GOVERNANCE.md ROADMAP.md LIMITATIONS.md CNAME; do if [ -f "$fname" ]; then cp "$fname" "$BUILD/$fname"; fi done @@ -76,9 +66,7 @@ jobs: - name: Generate build config run: | - # Avoid yaml.safe_load / !!python/name: tag issues — just text-substitute docs_dir sed 's|^docs_dir: \.$|docs_dir: .docs_build|' mkdocs.yml > .mkdocs_build.yml - echo "Build config written to .mkdocs_build.yml" - name: Build and deploy to GitHub Pages run: mkdocs gh-deploy --force --clean --config-file .mkdocs_build.yml