作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用$ quasar create创建的基本类星体页面。
我想在Gitlab ci上部署该应用程序,但是该部门不断给我带来一些错误,我已经设法修复了构建和测试错误,但无法弄清其中的部署部分。
.gitlab-ci.yml
build site:
image: node:10
stage: build
script:
- npm install -g @quasar/cli
- npm install --progress=false
- quasar build
artifacts:
expire_in: 1 week
paths:
- dist
unit test:
image: node:10
stage: test
script:
- npm install --progress=false
deploy:
image: alpine
stage: deploy
script:
- apk add --no-cache rsync openssh
- mkdir -p ~/.ssh
- echo "$SSH_PRIVATE_KEY" >> ~/.ssh/id_dsa
- chmod 600 ~/.ssh/id_dsa
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- rsync -rav --delete dist/ user@server.com:/your/project/path/
rsync -av -e "ssh -vv" --delete ...
这是我得到
的错误
最佳答案
尝试使用ssh verbose激活并执行rsync,以查看有关该错误的更多信息:
rsync -av -e "ssh -vv" --delete ...
chmod 700 ~/.ssh
关于docker - 如何在gitlab ci上部署quasar-vue应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60538771/
我是一名优秀的程序员,十分优秀!