www-next/.drone.yml

22 lines
329 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: node
commands:
- npm install
- npm run build
- name: deploy
image: alpine
volumes:
- name: www-next
path: /www-next
commands:
- ls /www-next
volumes:
- name: www-next
host:
path: /Main/www-next