Skip to content

Commit

Permalink
Update docs-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
romanin-rf committed Dec 18, 2023
1 parent 27b9258 commit ec6ece2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ jobs:
run: |
python -m pip install -U pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Setting config git
run: |
git config --global user.name ${{secrets.MY_GITHUB_USERNAME}}
git config --global user.email ${{secrets.MY_GITHUB_EMAIL}}
git config --global user.password ${{secrets.MY_GITHUB_PASSWORD}}
- name: Pulling branch 'docs'
run: |
cd site
git pull
cd ..
- name: Remove all files in submodule 'site'
run: |
python clearing.py
Expand Down

0 comments on commit ec6ece2

Please sign in to comment.