Unverified Commit 6dba0bee authored by Gao, Xiang's avatar Gao, Xiang Committed by GitHub
Browse files

Make docs deploy work (#155)

parent dded5be0
queue: queue:
name: Hosted Ubuntu 1604 name: Hosted Ubuntu 1604
timeoutInMinutes: 300 timeoutInMinutes: 6000
variables: variables:
python.version: '3.7' python.version: '3.7'
trigger:
batch: true
branches:
include:
- master
pr: none
steps: steps:
- task: UsePythonVersion@0 - task: UsePythonVersion@0
...@@ -18,14 +26,17 @@ steps: ...@@ -18,14 +26,17 @@ steps:
- script: 'sphinx-build docs build' - script: 'sphinx-build docs build'
displayName: Build documents displayName: Build documents
- script: 'echo $(deploy_privatekey) > ~/.ssh/id_rsa && echo $(deploy_pubkey) > ~/.ssh/id_rsa.pub' - script: 'mkdir -p ~/.ssh && echo $(deploy_privatekey) | base64 -d > ~/.ssh/id_rsa && chmod 0600 ~/.ssh/id_rsa && echo $(deploy_pubkey) > ~/.ssh/id_rsa.pub'
displayName: Set up deploy keys displayName: Set up deploy keys
- script: 'git clone git@github.com:aiqm/torchani-test-repo.git deploy_dir -b gh-pages' - script: 'ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts && git config --global user.email "zasdfgbnm-bot@example.com" && git config --global user.name "zasdfgbnm-bot"'
displayName: Clone old gh-pages displayName: Set up github
- script: 'git clone git@github.com:aiqm/torchani.git deploy_dir -b gh-pages'
displayName: Clone gh-pages repository
- script: 'rm -rf deploy_dir/* && cp -r build/* deploy_dir' - script: 'rm -rf deploy_dir/* && cp -r build/* deploy_dir'
displayName: Copy new files displayName: Replace with new files
- script: 'cd deploy_dir && git add . && git commit -m "update" && git push' - script: 'cd deploy_dir && git add . && git commit -m "update" && git push'
displayName: Deploy displayName: Deploy
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment