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:42:34 +01:00
|
|
|
image: mwienk/docker-lftp
|
2021-12-16 10:41:15 +01:00
|
|
|
environment:
|
2021-12-16 12:42:34 +01:00
|
|
|
USERNAME:
|
2021-12-16 10:41:15 +01:00
|
|
|
from_secret: username
|
2021-12-16 12:42:34 +01:00
|
|
|
PASSWORD:
|
2021-12-16 10:41:15 +01:00
|
|
|
from_secret: password
|
2021-12-16 12:42:34 +01:00
|
|
|
HOST:
|
2021-12-16 10:41:15 +01:00
|
|
|
from_secret: host
|
2021-12-16 12:42:34 +01:00
|
|
|
commands:
|
|
|
|
- "ls"
|
|
|
|
- lftp -c "open -u $USERNAME,$PASSWORD $HOST; mirror -Rnev ./build ./www --ignore-time --parallel=10 --exclude .htaccess --exclude-glob .git* --exclude .git/"
|