Personal-Site/.drone.yml
Thomas Cole d36852f826
Some checks failed
continuous-integration/drone/push Build is failing
Did not read documentation
2022-06-03 06:12:03 -04:00

58 lines
1013 B
YAML

kind: pipeline
name: buildsite
steps:
- name: restore_cache
image: appleboy/drone-sftp-cache
server: 192.168.10.5
username: thomas
password:
from_secret: ssh_password
port: 22
path: /var/cache/drone
restore: true
mount:
- node_modules
- name: build
image: node
commands:
- npm install
- npm run build
- name: rebuild_cache
image: appleboy/drone-sftp-cache
server: 192.168.10.5
username: thomas
password:
from_secret: ssh_password
port: 22
path: /var/cache/drone
rebuild: true
mount:
- node_modules
- name: copy
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
- name: cleanup
image: appleboy/drone-ssh
settings:
host: 192.168.10.5
username: thomas
password:
from_secret: ssh_password
port: 22
script:
- cd /home/thomas/wwwtest
- mv dist/* dist/.* .
- rmdir dist