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 17:27:21 +03:00

30 lines
385 B
YAML

stages:
- fetch
- build
- deploy
variables:
BRANCH: "develop"
image: alpine:latest
fetch:
stage: fetch
artifacts:
paths:
- docs/
script:
- apk add git
- mkdir docs/
- git clone https://git.pleroma.social/pleroma/pleroma.git -b master --depth 1
- cp -r pleroma/docs docs
build:
stage: build
script:
- echo "noop"
deploy:
stage: deploy
script:
- echo "noop"