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"