Website for sp-codes.de
https://www.sp-codes.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
489 B
22 lines
489 B
kind: pipeline |
|
name: default |
|
|
|
steps: |
|
- name: build |
|
image: node |
|
commands: |
|
- npm install |
|
- npm run build |
|
|
|
- name: deploy |
|
image: alpine |
|
environment: |
|
FTP_HOST: |
|
from_secret: FTP_HOST |
|
FTP_USERNAME: |
|
from_secret: FTP_USERNAME |
|
FTP_PASSWORD: |
|
from_secret: FTP_PASSWORD |
|
commands: |
|
- which lftp || ( apk --update add lftp ) |
|
- lftp -e "mirror -R ./dist/ sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
|
|