Project-bestanden van TI - Game Controller gekopieerd

This commit is contained in:
HBO-ICT Bot
2023-11-21 12:51:19 +01:00
commit e53d9d5bca
28 changed files with 1726 additions and 0 deletions

26
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,26 @@
image: python:3.9-slim
before_script:
- time apt update
- time pip install -r requirements.txt
- time cd mdocotion && python setup.py install && cd ..
pages:
stage: deploy
tags:
- hva
script:
- time mkdocs build --site-dir public
- time cp -rf web public
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
changes:
- "docs/**/*"
- "mkdocs.yml"
- ".gitmodules"
variables:
GIT_SUBMODULE_STRATEGY: recursive