.gitlab-ci.yml skeleton
This commit is contained in:
commit
8ae850148d
1 changed files with 29 additions and 0 deletions
29
.gitlab-ci.yml
Normal file
29
.gitlab-ci.yml
Normal 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"
|
Reference in a new issue