Update epitope-specific_TCR_AIRRs.rst #220
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: build_docs | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install sphinx | |
pip install furo | |
- name: make html & commit the changes | |
run: | | |
export PYTHONPATH=. | |
python scripts/specs_docs_generation.py | |
sphinx-build -b html ./docs_source ./docs | |
git config --global user.email "[email protected]" | |
git config user.name "pavlovicmilena" | |
git add -f ./docs | |
git commit -m 'update docs' | |
- name: push changes to gh-pages to show automatically | |
uses: ad-m/github-push-action@master | |
with: | |
branch: gh-pages | |
force: true |