This repository has been archived on 2022-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
docs/.gitlab-ci.yml
2019-10-02 20:42:58 +03:00

23 lines
320 B
YAML

stages:
- fetch-and-build
- deploy
variables:
BRANCH: "develop"
image: alpine:latest
fetch-and-build:
stage: fetch-and-build
artifacts:
paths:
- site/
script:
- apk add git py-pip
- pip install mkdocs mkdocs-material
- ./manage.sh all --branch $BRANCH
deploy:
stage: deploy
script:
- echo "noop"