Skip to content

Commit ecaf1d4

Browse files
committed
feat: Configure GitLab Pages
1 parent fdd0f5a commit ecaf1d4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.gitlab-ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
image: python:latest
2+
pages:
3+
stage: deploy
4+
script:
5+
- pip install mkdocs-material
6+
- mkdocs build --site-dir public
7+
artifacts:
8+
paths:
9+
- public
10+
rules:
11+
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'

0 commit comments

Comments
 (0)