gpt4 book ai didi

yaml - 如何在 .gitlab-ci.yml 中转义冒号?

转载 作者:行者123 更新时间:2023-12-04 12:29:04 24 4
gpt4 key购买 nike

我有这样一行:

sed -i 's/"host: TND_HOST"/"host: process.env.TND_HOST"/g' services/management/tnd.js
并且上面的选项会导致 linting 错误:
This GitLab CI configuration is invalid: (<unknown>): mapping values are not allowed in this context at line [...]
其他不起作用的选项是:
sed -i 's/host: TND_HOST/host: process.env.TND_HOST/g' services/management/tnd.js

sed -i "s/host: TND_HOST/host: process.env.TND_HOST/g" services/management/tnd.js
有什么方法可以克服这个问题并将其保留为单线?

最佳答案

由于您使用了两种类型的引号,因此将您的命令放在 yaml 模板中可能是最简单的。这样你就不需要逃避任何事情:

stages:
- lint

.sed_template: &sed_template |
sed -i 's/"host: TND_HOST"/"host: process.env.TND_HOST"/g' services/management/tnd.js

some_job:
image: someImage:latest
stage: lint
except:
- master
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- frontend/node_modules/
script:
- echo "firstLine"
- *sed_template
- echo "lastLine"
它不再是一个单一的类轮,但我想它是最干净的选择,因为它使命令本身具有相当的可读性。
另一种选择是使用 folding style这将它缩小了一点:
stages:
- lint

some_job:
image: someImage:latest
stage: lint
except:
- master
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- frontend/node_modules/
script:
- echo "firstLine"
- >
sed -i 's/"host: TND_HOST"/"host: process.env.TND_HOST"/g' services/management/tnd.js
- echo "lastLine"

关于yaml - 如何在 .gitlab-ci.yml 中转义冒号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68085161/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com