Skip to content

Commit 6a99be1

Browse files
author
Igor Bagnucki
committed
Add template of gh-page
Signed-off-by: Igor Bagnucki <[email protected]>
1 parent 0260d79 commit 6a99be1

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
name: ci
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
- mkdocs
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-python@v2
15+
with:
16+
python-version: 3.x
17+
- run: pip install mkdocs-material
18+
- run: mkdocs gh-deploy --force

mkdocs.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
site_name: apu2 Documentation
2+
site_url: https://apu2.3mdeb.com/
3+
theme:
4+
name: material
5+
# TODO: provide logo and styling
6+
# favicon: images/favicon.png
7+
# logo: images/logo.png
8+
# extra_css:
9+
# - stylesheets/extra.css
10+
markdown_extensions:
11+
- pymdownx.highlight
12+
- pymdownx.superfences
13+
- pymdownx.keys
14+
nav:
15+
- 'Intro': README.md

0 commit comments

Comments
 (0)