cv-site/.drone.yml

51 lines
1.3 KiB
YAML
Raw Normal View History

2021-12-16 10:41:15 +01:00
---
kind: pipeline
type: docker
2023-05-27 17:16:14 +02:00
name: deploy-production
2021-12-16 10:41:15 +01:00
steps:
2023-05-27 17:16:14 +02:00
- name: build-site
image: node:latest
commands:
- npm install
- npm run build
2021-12-16 12:22:56 +01:00
2023-05-27 17:16:14 +02:00
- name: deploy
image: mwienk/docker-lftp
environment:
USERNAME: pettinattk
PASSWORD:
from_secret: password
HOST: ftp.cluster027.hosting.ovh.net
commands:
- lftp -c "open -u $USERNAME,$PASSWORD $HOST; mirror -Rnev ./build ./www --ignore-time --parallel=10 --exclude .htaccess --exclude-glob .git* --exclude .git/"
2021-12-20 11:48:43 +01:00
trigger:
branch:
2023-05-27 17:16:14 +02:00
- main
---
kind: pipeline
type: docker
name: deploy-develop
steps:
- name: build-site
image: node:latest
commands:
- npm install
- npm run build
- name: deploy
image: mwienk/docker-lftp
environment:
SSH_KEY:
from_secret: ssh_key
commands:
- mkdir -p /root/.ssh/ && echo $SSH_KEY > /root/.ssh/id_droneci && chmod 0600 /root/.ssh/id_droneci && ssh-keyscan -p 69 -H 192.168.178.25 >> /root/.ssh/known_hosts
- ssh -i /root/.ssh/id_droneci -p 69 root@192.168.178.25 "mv /mnt/user/appdata/binhex-nginx/nginx/html /mnt/user/appdata/binhex-nginx/nginx/html$(date -I) && mkdir /mnt/user/appdata/binhex-nginx/nginx/html"
- scp -r -i /root/.ssh/id_droneci -p 69 ./build/* root@192.168.178.25/mnt/user/appdata/binhex-nginx/nginx/html/
trigger:
branch:
- develop