我使用lftp自动gitlab ci部署。我运行一个脚本来部署我的代码,除了'静态'我需要上传到其他服务器的文件。这是我当前代码的示例。
script:
- >
lftp
-e "mirror
--exclude ^\.git.*
--exclude-glob *.sql
--exclude-glob *.sqlite3
--exclude-glob *.txt
--exclude-glob *.csv
--exclude-glob *.pyc
--exclude settings.py
--exclude migracion/
--exclude static/
--exclude ^Resources/Private/
--exclude \.gitlab-ci.yaml
-eRv $CI_PROJECT_DIR /pro/ject/dirs; quit;"
sftp://$ACC
这很好但在此之后,我必须手动将静态文件上传到静态文件服务器。你能帮我一个只能获取所有静态文件夹中文件的脚本吗?静态文件夹可以位于root用户和其他文件夹中。很多Thx。
答案 0 :(得分:11)
您可以使用:
lftp -u username,passwd ftp.foobar.cmo \
-e "mirror -e -R -x .git -x static/ -p ./ dev-site ; quit"
在镜子中的位置:
-e
:删除不再存在的文件-R
:表示您从本地计算机上传到ftp服务器-x
:指定要排除的目录。您可以拥有多个-x
-p
:parallelize ./
:您要上传的本地目录dev-site
:远程目录,必须上传。注意远程dir参数:
dev-site/
)结尾,您当前的目录将在ftp服务器上 INSIDE 此目录上传dev-site
)结尾,那么您当前的目录将在ftp服务器上 AS 上传如果您要使用GitLab CI上传静态生成的文档,请参阅.gitlab-ci.yml
mkdocs
+ lftp
的示例:
# Build static html site with mkdocs :
build:
stage: build
script:
- mkdocs build
# first upload, exclude static files:
- lftp -u ftp_username,$FTP_PASSWORD ftp.foobar.org -e "mirror -x static -R -p site dev ; quit"
# upload only static to other server:
- lftp -u ftp_username,$FTP_PASSWORD ftp.otherserv.org -e "mirror -R -p static/ remote/dir ; quit"