gpt4 book ai didi

linux - 在 CircleCI 命令中设置环境变量

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:37:55 25 4
gpt4 key购买 nike

我想根据 CLI 命令的输出设置一个环境变量,我尝试了以下但它不起作用

- run:
name: Build web files
command: API_URL="$(node utils/get-api-url.js)" && npm --prefix skynet/web run build

这是为什么呢?

我尝试了以下 https://discuss.circleci.com/t/setting-environment-variables-with-a-command-fails/11034/4

- run:
name: Build web files
command: |
API_URL: $(node utils/get-api-url.js)
eval $(npm --prefix skynet/web run build)

但是得到了

/bin/bash: API_URL:: command not found Exited with code 127

最佳答案

根据您最初的例子,试试这个:

- run:
name: Build web files
command: |
API_URL=$(node utils/get-api-url.js)
npm --prefix skynet/web run build

请记住,变量 API_URL 在此 CircleCI 步骤之外不可用。

关于linux - 在 CircleCI 命令中设置环境变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46408505/

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