added .gitlab-ci.yml
This commit is contained in:
parent
ea34a0a04c
commit
5d05b18b67
1 changed files with 11 additions and 0 deletions
11
.gitlab-ci.yml
Normal file
11
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
stages:
|
||||
- build
|
||||
- deploy
|
||||
|
||||
deploy:
|
||||
image: alpine
|
||||
stage: deploy
|
||||
before_script:
|
||||
- apk add lftp
|
||||
script:
|
||||
- lftp -e "mirror -R ./ samuel-philipp.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
Loading…
Reference in a new issue