Skip to content

Commit

Permalink
Update S3 bucket paths (#433)
Browse files Browse the repository at this point in the history
This PR updates the S3 bucket paths due to some recent changes we've
made.
  • Loading branch information
ajschmidt8 authored Sep 26, 2023
1 parent 6cd7b82 commit 296b3f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/download_from_s3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ download_lib_docs() {
continue
fi

SRC="s3://${DOCS_BUCKET}/${PROJECT}/${VERSION_NUMBER}/html/"
SRC="s3://${DOCS_BUCKET}/${PROJECT}/html/${VERSION_NUMBER}/"
DST="$(yq -n 'env(GENERATED_DIRS)|.libs')/${PROJECT}/${VERSION_NUMBER}/"

aws_cp "${SRC}" "${DST}"
Expand All @@ -100,7 +100,7 @@ download_deployment_docs() {
local DST SRC VERSION

for VERSION in nightly stable; do
SRC="s3://${DOCS_BUCKET}/deployment/${VERSION}/html/"
SRC="s3://${DOCS_BUCKET}/deployment/html/${VERSION}/"
DST="$(yq -n 'env(GENERATED_DIRS)|.deployment')/${VERSION}/"

aws_cp "${SRC}" "${DST}"
Expand Down

0 comments on commit 296b3f0

Please sign in to comment.