Files
awesome-game-remakes/.gitlab-ci.yml
Radek SPRTA 5b3abdc483 Revert "Run awesome-lint in CI"
This reverts commit 4f7c2639a1.
2022-12-12 23:49:19 +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 CONTRIBUTING.md docs/contributing.md
- cp CREDITS.md docs/credits.md
- cp LICENSE docs/license.md
- mkdocs build -d public/
artifacts:
paths:
- public
only:
- master