Skip to content

Commit 4dc5c68

Browse files
committed
Fixing Bugs
1 parent 8515cfa commit 4dc5c68

2 files changed

Lines changed: 31 additions & 1 deletion

File tree

.github/workflows/docs.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Publish Documentation
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
paths:
7+
- 'Docs/**'
8+
- 'mkdocs.yml'
9+
10+
permissions:
11+
contents: write
12+
13+
jobs:
14+
deploy:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout Code
18+
uses: actions/checkout@v4
19+
20+
- name: Set up Python
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: 3.x
24+
25+
- name: Install Dependencies
26+
run: |
27+
pip install mkdocs-material
28+
29+
- name: Deploy to GitHub Pages
30+
run: mkdocs gh-deploy --force

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ nav:
4343
- Enabling & Disabling Sections: Modes/ModeSections/Enabling_or_Disabling_Sections.md
4444
- Naming Conventions: Modes/ModeSections/Naming_Conventions.md
4545
- Premade Modes:
46-
- Laravel DDD Template: Modes/PreMadeModes/laravel-ddd.md
46+
- Laravel DDD Template: Modes/PreMadeModes/laravel-ddd.md

0 commit comments

Comments
 (0)