Added fr pages

This commit is contained in:
Dimitris Zlatanidis 2023-06-12 09:14:12 +03:00
parent fde61810e4
commit 98cf59b8d6
2 changed files with 25 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
public

24
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,24 @@
image: python:3.8-buster
before_script:
- pip install -r requirements.txt
test:
stage: test
script:
- mkdocs build --strict --verbose --site-dir test
artifacts:
paths:
- test
rules:
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
pages:
stage: deploy
script:
- mkdocs build --strict --verbose
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH