Skip to content

Commit

Permalink
fix: fix documentation deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Robso-creator committed Dec 13, 2024
1 parent 24e2b19 commit dbf7ff5
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/documentation_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,19 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
python-version: 3.12

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements/requirements.txt
- name: Reload documentations
run: make local_doc
- name: Configure Git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Run deploy on gh-pages
run: mkdocs gh-deploy --force --clean --verbose
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: mkdocs gh-deploy --force --clean --verbose --remote-branch gh-pages

0 comments on commit dbf7ff5

Please sign in to comment.