diff --git a/scripts/ci.bash b/scripts/ci.bash index 6b28d5babeedda707b903484c5ceb157350828b3..aeba9dd7647ebed287ef734200d5c3aaa223ebe1 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