From e53d6bce681dfe5d00e8a3a2231b9c9ab6761a8c Mon Sep 17 00:00:00 2001 From: Asher Date: Mon, 19 Aug 2019 17:02:02 -0500 Subject: [PATCH] Forward GitHub token to docker build if it exists --- scripts/ci.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci.bash b/scripts/ci.bash index 6b28d5ba..aeba9dd7 100755 --- a/scripts/ci.bash +++ b/scripts/ci.bash @@ -5,6 +5,7 @@ set -euo pipefail function docker-build() { local target="${TARGET:-}" local image="codercom/nbin-${target}" + local token="${GITHUB_TOKEN:-}" if [[ "${target}" == "linux" ]] ; then image="codercom/nbin-centos" fi @@ -26,7 +27,7 @@ function docker-build() { local command="${1}" ; shift local args="'${vscodeVersion}' '${codeServerVersion}' '${target}'" docker exec "${containerId}" \ - bash -c "cd /src && CI=true yarn ${command} ${args}" + bash -c "cd /src && CI=true GITHUB_TOKEN=${token} yarn ${command} ${args}" } docker cp ./. "${containerId}":/src