Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
agentrust.io
trace.agentrust-io.com
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -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/
Expand Down
Loading