我最近一直在使用Bitbucket Pipelines,在生产服务器上部署完整存储库时,它运行良好。但是,这次我只想将Jekyll _site 文件夹推入域的根目录中。
bitbucket-pipelines.yml文件设置:
image: jekyll/builder:latest
pipelines:
default:
- step:
script:
- jekyll build
- rsync -a _site/ root@$PRODUCTION_HOST:/www/mydomain.com --exclude=bitbucket-pipelines.yml --exclude=deploy --exclude=Vagrantfile --chown=www-data:www-data
这是我得到的错误:
+ rsync -a _site/ root@$PRODUCTION_HOST:/www/mydomain.com --exclude=bitbucket-pipelines.yml --exclude=deploy --exclude=Vagrantfile --chown=www-data:www-data
Unknown --usermap name on receiver: www-data
Unknown --groupmap name on receiver: www-data
rsync: mkdir "/opt/atlassian/pipelines/agent/build/root@$PRODUCTION_HOST:/www/historiacritica.com" failed: No such file or directory (2)
rsync error: error in file IO (code 11) at main.c(664) [Receiver=3.1.3]
我希望有人可以帮我这个忙!
谢谢!