2021-12-16 10:41:15 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: deploy
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build-site
|
|
|
|
image: node:latest
|
|
|
|
commands:
|
|
|
|
- npm install
|
|
|
|
- npm run build
|
2021-12-16 12:22:56 +01:00
|
|
|
|
2021-12-16 10:41:15 +01:00
|
|
|
- name: deploy
|
2021-12-16 12:22:56 +01:00
|
|
|
image: cschlosser/drone-ftps
|
2021-12-16 10:41:15 +01:00
|
|
|
environment:
|
2021-12-16 12:22:56 +01:00
|
|
|
FTP_USERNAME:
|
2021-12-16 10:41:15 +01:00
|
|
|
from_secret: username
|
2021-12-16 12:22:56 +01:00
|
|
|
FTP_PASSWORD:
|
2021-12-16 10:41:15 +01:00
|
|
|
from_secret: password
|
2021-12-16 12:22:56 +01:00
|
|
|
PLUGIN_HOSTNAME:
|
2021-12-16 10:41:15 +01:00
|
|
|
from_secret: host
|
2021-12-16 12:22:56 +01:00
|
|
|
PLUGIN_DEST_DIR: /www
|
|
|
|
PLUGIN_SRC_DIR: /build
|
|
|
|
PLUGIN_EXCLUDE: (.htaccess)|(.git)
|
2021-12-16 12:34:05 +01:00
|
|
|
|