我想使用Gitlab CI在master中提交时将我的静态网站部署到ftp服务器。我没有使用DevOps的经验,我尝试通过互联网上的教程来做到这一点。我创建了这个.gitlab-ci.yml文件
deploy:
stage: deploy
only:
- master
deploy:
script:
- apt-get update -qq && apt-get install -y -qq lftp
- lftp -u ftp-login,ftp-pass ftp.server \
-e "mirror -e -R -x .git -x excl.txt -x exclude-1 -x exclude-2 -x README.md -p ./ mysite/www/ ; quit"
但是gitlab向我展示了这个yml文件的错误。它说明在此上下文中不允许使用映射值。你能帮我处理这个文件吗?谢谢!
发布于 2021-01-11 13:10:39
有相同的错误信息
(<unknown>): mapping values are not allowed in this context gitlabci
在我的例子中,问题是:
查看文档:https://docs.gitlab.com/ee/ci/yaml/README.html#script
有时,脚本命令必须用单引号或双引号括起来。例如,包含冒号(:)的命令必须用单引号(')括起来。YAML解析器需要将文本解释为字符串,而不是“key:value”对。
例如,此脚本使用冒号:
job:
script:
- curl --request POST --header 'Content-Type: application/json' "https://gitlab/api/v4/projects"
要被认为是有效的YAML,必须用单引号将整个命令括起来。如果命令已经使用了单引号,则应尽可能将其更改为双引号("):
job:
script:
- 'curl --request POST --header "Content-Type: application/json" "https://gitlab/api/v4/projects"'
https://stackoverflow.com/questions/49897538
复制相似问题