diff --git a/.github/actions/devcontainer-json/action.sh b/.github/actions/devcontainer-json/action.sh index 7dfa917e..e64f0540 100755 --- a/.github/actions/devcontainer-json/action.sh +++ b/.github/actions/devcontainer-json/action.sh @@ -28,7 +28,7 @@ const json = JSON.parse(readFileSync('image/.devcontainer/devcontainer.json')); json.build.args.BASE = '${os}'; json.build.args.RAPIDS_VERSION = '${VERSION}'; -json.containerEnv = ${container_env} || undefined; +json.containerEnv = Object.assign(json.containerEnv || {}, ${container_env} || {}); const dups = {};