Skip to content

Merge branch 'main' of https://github.com/ribesstefano/PROTAC-Degrada… #2

Merge branch 'main' of https://github.com/ribesstefano/PROTAC-Degrada…

Merge branch 'main' of https://github.com/ribesstefano/PROTAC-Degrada… #2

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install sphinx sphinx_rtd_theme
- name: Build the documentation
run: |
cd docs
make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html