Personal-Site/.drone.yml
Thomas Cole c79526cf08
All checks were successful
continuous-integration/drone/push Build is passing
Remove dist folder but copy contents
2022-06-03 05:50:11 -04:00

20 lines
347 B
YAML

kind: pipeline
name: buildsite
steps:
- name: build
image: node
commands:
- npm install
- npm run build
- name: deploy
image: appleboy/drone-scp
settings:
host: 192.168.10.5
username: thomas
password:
from_secret: ssh_password
port: 22
target: /home/thomas/wwwtest
source: ./dist
strip_components: 1