From e58f4da688483210f1ce722d92f09dddc5725db2 Mon Sep 17 00:00:00 2001 From: Jonathan Curran Date: Mon, 14 Jan 2019 10:00:11 -0700 Subject: [PATCH] Fix artifact names in docs pipeline (#152) --- doc.Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc.Jenkinsfile b/doc.Jenkinsfile index 10dad3bd..042d3fa5 100644 --- a/doc.Jenkinsfile +++ b/doc.Jenkinsfile @@ -24,8 +24,8 @@ pipeline { } } steps { - sh "aws s3 cp s3://rstudio-rsconnect-jupyter/rsconnect-jupyter-${RELEASE_VERSION}.html s3://docs.rstudio.com/rsconnect-jupyter/ --dryrun" - sh "aws s3 cp s3://docs.rstudio.com/rsconnect-jupyter/rsconnect-jupyter-${RELEASE_VERSION}.html s3://docs.rstudio.com/rsconnect-jupyter/index.html --dryrun" + sh "aws s3 cp s3://rstudio-rsconnect-jupyter/rsconnect_jupyter-${RELEASE_VERSION}.html s3://docs.rstudio.com/rsconnect-jupyter/ --dryrun" + sh "aws s3 cp s3://docs.rstudio.com/rsconnect-jupyter/rsconnect_jupyter-${RELEASE_VERSION}.html s3://docs.rstudio.com/rsconnect-jupyter/index.html --dryrun" } } stage('Promote Docs') { @@ -36,8 +36,8 @@ pipeline { } } steps { - sh "aws s3 cp s3://rstudio-rsconnect-jupyter/rsconnect-jupyter-${RELEASE_VERSION}.html s3://docs.rstudio.com/rsconnect-jupyter/" - sh "aws s3 cp s3://docs.rstudio.com/rsconnect-jupyter/rsconnect-jupyter-${RELEASE_VERSION}.html s3://docs.rstudio.com/rsconnect-jupyter/index.html" + sh "aws s3 cp s3://rstudio-rsconnect-jupyter/rsconnect_jupyter-${RELEASE_VERSION}.html s3://docs.rstudio.com/rsconnect-jupyter/" + sh "aws s3 cp s3://docs.rstudio.com/rsconnect-jupyter/rsconnect_jupyter-${RELEASE_VERSION}.html s3://docs.rstudio.com/rsconnect-jupyter/index.html" } } }