From 9699e24d677cd4f08ceab3d53991e6debd726bce Mon Sep 17 00:00:00 2001 From: Luciano Bello Date: Fri, 11 Aug 2023 14:37:23 +0200 Subject: [PATCH 1/2] remove deploy documentation to /documentation --- tools/deploy_documentation.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/deploy_documentation.sh b/tools/deploy_documentation.sh index cc75566a9..01d4b88ff 100755 --- a/tools/deploy_documentation.sh +++ b/tools/deploy_documentation.sh @@ -34,10 +34,6 @@ echo "Building for stable version $STABLE_VERSION" # Push to qiskit.org/ecosystem openssl aes-256-cbc -K $encrypted_rclone_key -iv $encrypted_rclone_iv -in tools/rclone.conf.enc -out $RCLONE_CONFIG_PATH -d echo "Pushing built docs to qiskit.org/ecosystem" -rclone sync --progress --exclude-from ./tools/other-builds.txt ./docs/build/html IBMCOS:qiskit-org-web-resources/documentation/retworkx -rclone sync --progress --exclude-from ./tools/other-builds.txt ./docs/build/html IBMCOS:qiskit-org-web-resources/documentation/rustworkx rclone sync --progress --exclude-from ./tools/other-builds.txt ./docs/build/html IBMCOS:qiskit-org-web-resources/ecosystem/rustworkx echo "Pushing built docs to stable site" -rclone sync --progress ./docs/build/html IBMCOS:qiskit-org-web-resources/documentation/retworkx/stable/"$STABLE_VERSION" -rclone sync --progress ./docs/build/html IBMCOS:qiskit-org-web-resources/documentation/rustworkx/stable/"$STABLE_VERSION" rclone sync --progress ./docs/build/html IBMCOS:qiskit-org-web-resources/ecosystem/rustworkx/stable/"$STABLE_VERSION" From 538e571c413780b7a7303b667be4751e9a1c130f Mon Sep 17 00:00:00 2001 From: Luciano Bello Date: Fri, 11 Aug 2023 14:42:13 +0200 Subject: [PATCH 2/2] tools/deploy_documentation_dev.sh --- tools/deploy_documentation_dev.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/deploy_documentation_dev.sh b/tools/deploy_documentation_dev.sh index 1b29876bd..123443a99 100755 --- a/tools/deploy_documentation_dev.sh +++ b/tools/deploy_documentation_dev.sh @@ -29,6 +29,4 @@ pwd # Push to qiskit.org/ecosystem openssl aes-256-cbc -K $encrypted_rclone_key -iv $encrypted_rclone_iv -in tools/rclone.conf.enc -out $RCLONE_CONFIG_PATH -d echo "Pushing built docs to website" -rclone sync --progress ./docs/build/html IBMCOS:qiskit-org-web-resources/documentation/retworkx/dev -rclone sync --progress ./docs/build/html IBMCOS:qiskit-org-web-resources/documentation/rustworkx/dev rclone sync --progress ./docs/build/html IBMCOS:qiskit-org-web-resources/ecosystem/rustworkx/dev