Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 80592a3

Browse files
committed
fix(docs): Configure git identity for runner and sanitize filenames
1 parent e9a9265 commit 80592a3

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/docs.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v4
20-
20+
with:
21+
fetch-depth: 0
22+
2123
- name: Configure Python
2224
uses: actions/setup-python@v5
2325
with:
@@ -26,5 +28,11 @@ jobs:
2628
- name: Install dependencies
2729
run: pip install mkdocs-material
2830

31+
- name: Build Documentation
32+
run: mkdocs build
33+
2934
- name: Build and Deploy
30-
run: mkdocs gh-pages --force
35+
run: |
36+
git config user.name github-actions
37+
git config user.email [email protected]
38+
mkdocs gh-pages --force

docs/The Nexus Protocol_ Standardizing Identity and Connection Orchestration for Autonomous Agents.pdf renamed to docs/nexus-protocol-whitepaper.pdf

File renamed without changes.

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ nav:
3333
- Core Concepts:
3434
- Architecture: architecture.md
3535
- The Nexus Protocol: NEXUS_PROTOCOL.md
36+
- Technical Whitepaper: nexus-protocol-whitepaper.pdf
3637
- Security Model: reference/security-model.md
3738
- Getting Started:
3839
- Quick Start: index.md # Will link to the Quick Start section

0 commit comments

Comments
 (0)