.gitlab-ci.yml skeleton

This commit is contained in:
rinpatch 2019-10-02 17:26:07 +03:00
commit 8ae850148d

29
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,29 @@
stages:
- fetch
- build
- deploy
variables:
BRANCH: "develop"
image: alpine:latest
fetch:
stage: fetch
artifacts:
paths:
- docs/
script:
- 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"