From be7aae3d875d33bc96dd77845f11129ce0638bf2 Mon Sep 17 00:00:00 2001 From: Luciano Bello Date: Fri, 11 Aug 2023 21:47:27 +0200 Subject: [PATCH] Remove documentation deployment to qiskit.org/documentation (#964) * remove deploy documentation to /documentation * tools/deploy_documentation_dev.sh --- tools/deploy_documentation.sh | 4 ---- tools/deploy_documentation_dev.sh | 2 -- 2 files changed, 6 deletions(-) diff --git a/tools/deploy_documentation.sh b/tools/deploy_documentation.sh index cc75566a97..01d4b88ff1 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" diff --git a/tools/deploy_documentation_dev.sh b/tools/deploy_documentation_dev.sh index 1b29876bd6..123443a99e 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