28 lines
379 B
YAML
28 lines
379 B
YAML
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
|
|
stages:
|
|
- build
|
|
# - test
|
|
- deploy
|
|
|
|
building_ui:
|
|
image: node
|
|
tags:
|
|
- docker
|
|
stage: build
|
|
script:
|
|
- git submodule update --init
|
|
- npm install
|
|
- npm run build
|
|
|
|
deploy_master:
|
|
image: mwienk/docker-lftp
|
|
tags:
|
|
- docker
|
|
stage: deploy
|
|
script:
|
|
- ls -lh
|