fling/.drone.yml

19 lines
299 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
- ./mvnw clean package
- name: build-web
image: node:latest
commands:
- ls -al
- cd web/fling
- npm install && npm run build