Skip to content

Merge branch 'main' of https://github.com/GRAAL-Research/deepparse in… #20

Merge branch 'main' of https://github.com/GRAAL-Research/deepparse in…

Merge branch 'main' of https://github.com/GRAAL-Research/deepparse in… #20

Workflow file for this run

name: Deployment
on:
push:
branches:
- stable
jobs:
deploy:
runs-on: ubuntu-latest
env:
DEEPPARSE_RELEASE_BUILD: "1"
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install -e .[all]
- name: Building doc
run: |
cd docs
./rebuild_html_doc.sh
cd ..
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html/