baseui/.gitlab-ci.yml
2017-08-31 21:07:39 +02:00

39 lines
609 B
YAML

cache:
paths:
- node_modules/
stages:
- build
# - test
- deploy
build_ui:
image: node
tags:
- docker
stage: build
script:
- git submodule update --init
- npm install
- npm run build
artifacts:
name: "basispanel-ui-$CI_COMMIT_REF_NAME"
expire_in: 1h
paths:
- assets
- build
- conf
- index.html
deploy_master:
image: mwienk/docker-lftp
tags:
- docker
dependencies:
- build_ui
stage: deploy
script:
- lftp --version