commit 8ae850148df8149dcd9d07723f2d1e641a853779 Author: rinpatch Date: Wed Oct 2 17:26:07 2019 +0300 .gitlab-ci.yml skeleton diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..400911b --- /dev/null +++ b/.gitlab-ci.yml @@ -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"