fling/.drone.yml

19 lines
316 B
YAML
Raw Normal View History

2020-06-07 10:10:21 +00:00
kind: pipeline
type: docker
name: default
steps:
- name: build-service
image: adoptopenjdk:11-hotspot
commands:
- ls -al
- cd service/fling
2020-06-07 10:59:24 +00:00
- ./mvnw -Plocal clean package
2020-06-07 10:10:21 +00:00
- name: build-web
image: node:latest
commands:
- ls -al
- cd web/fling
2020-06-07 10:59:24 +00:00
- npm install && CI=false npm run build