We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c9852c commit e0083cfCopy full SHA for e0083cf
2 files changed
.github/workflows/mkdocs.yml
@@ -0,0 +1,22 @@
1
+name: Deploy MkDocs site to GitHub Pages
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
+ - name: Set up Python
15
+ uses: actions/setup-python@v5
16
+ with:
17
+ python-version: '3.x'
18
+ - name: Install dependencies
19
+ run: pip install mkdocs
20
+ - name: Build and Deploy
21
+ run: |
22
+ mkdocs gh-deploy --force
mkdocs.yml
@@ -0,0 +1,8 @@
+site_name: ClonifyLabs Docs
+nav:
+ - Home: index.md
+ - Document: document.md
+ - Document2: document2.md
+ - SRD: SRD.md
+ - srd: srd.md
+ - Diagram Example: diagram-example.md
0 commit comments