2.2.4 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy-docs | |
on: | |
release: | |
types: [published] | |
jobs: | |
deploy-docs: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.8] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: ci/install_dependencies.sh | |
- name: Install TorchANI | |
run: python setup.py install | |
- name: Download data files | |
run: ./download.sh | |
# double check that this is indeed run under a release | |
- name: Fail build on non-release commits | |
run: git describe --exact-match --tags HEAD | |
# build docs | |
- name: Build documents | |
run: sphinx-build docs build | |
# try deploying | |
- name: Set up environments | |
run: | | |
mkdir -p ~/.ssh | |
echo ${{secrets.zasdfgbnm_bot_private_key}} | base64 -d > ~/.ssh/id_rsa | |
chmod 0600 ~/.ssh/id_rsa | |
echo ${{secrets.zasdfgbnm_bot_public_key}} > ~/.ssh/id_rsa.pub | |
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts | |
git config --global user.email "[email protected]" | |
git config --global user.name "zasdfgbnm-bot" | |
- name: Deploy | |
run: | | |
git clone [email protected]:aiqm/torchani.git deploy_dir -b gh-pages | |
rm -rf deploy_dir/* | |
touch deploy_dir/.nojekyll | |
cp -r build/* deploy_dir | |
cd deploy_dir | |
git add . | |
git commit -m "update" | |
git push |