From 13a31ed28253f8515fe255cd2ff57b4ad8f192b6 Mon Sep 17 00:00:00 2001 From: Aston Zhang <22279212+astonzhang@users.noreply.github.com> Date: Thu, 23 Dec 2021 17:49:31 -0800 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6cf18baa..40888a8b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -70,13 +70,13 @@ stage("Build and Publish") { sh label:"Release", script:"""set -ex conda activate ${ENV_NAME} d2lbook build pkg - d2lbook deploy html pdf pkg colab sagemaker --s3 s3://${LANG}-v2.d2l.ai + d2lbook deploy html pdf slides pkg colab sagemaker --s3 s3://${LANG}-v2.d2l.ai """ } else { sh label:"Publish", script:"""set -ex conda activate ${ENV_NAME} - d2lbook deploy html pdf slides --s3 s3://preview.d2l.ai/${JOB_NAME}/ + d2lbook deploy html pdf --s3 s3://preview.d2l.ai/${JOB_NAME}/ """ if (env.BRANCH_NAME.startsWith("PR-")) { pullRequest.comment("Job ${JOB_NAME}/${BUILD_NUMBER} is complete. \nCheck the results at http://preview.d2l.ai/${JOB_NAME}/") -- GitLab