Files
awesome-game-remakes/.gitlab-ci.yml
2020-03-10 10:32:16 +01:00

17 lines
354 B
YAML

pages:
image: python:latest
script:
- pip install mkdocs
- pip install mkdocs-material
- mkdir docs
- cp README.md docs/index.md
- cp CONTRIBURING.md docs/contriburing.md
- cp CREDITS.md docs/credits.md
- cp LICENSE docs/license.md
- mkdocs build -d public/
artifacts:
paths:
- public
only:
- master