Skip to content

Commit c9c6dd2

Browse files
committed
Added GitLab Pages
1 parent b1c1d5f commit c9c6dd2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.gitlab-ci.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
mkdocs-pages:
2+
image: python:3.13.0-slim
3+
before_script:
4+
- |
5+
pip install \
6+
mkdocs \
7+
mkdocs-material \
8+
mkdocs-material-extensions \
9+
pymdown-extensions \
10+
mkdocs-minify-plugin \
11+
mkdocs-macros-plugin \
12+
mkdocs-redirects
13+
script:
14+
- |
15+
mkdocs build --site-dir public
16+
artifacts:
17+
paths:
18+
- public

0 commit comments

Comments
 (0)