Merge pull request #606 from Aiven-Open/sgiffard/BF-2272-fix-type-hints #94
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: Sphinx Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Sphinx Pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Main Branch" | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
path: main | |
ref: main | |
- name: "Checkout GitHub Pages Branch" | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
path: gh-pages | |
ref: gh-pages | |
- name: "Setup Python & Install Spinx" | |
uses: actions/setup-python@v3 | |
- name: "Install Sphinx & Theme" | |
run: pip install sphinx==4.5.0 sphinx-rtd-theme==1.0.0 | |
- name: "Run Sphinx" | |
run: sphinx-build -b html main/docs gh-pages -E -d $GITHUB_WORKSPACE/.doctree | |
- name: "Commit & Push Changes (If Any)" | |
run: | | |
cd gh-pages | |
git add -A | |
git config --global user.email "$(git show --format=%ae -s)" | |
git config --global user.name "$(git show --format=%an -s)" | |
git commit -m "From $GITHUB_REF $(echo ${GITHUB_SHA} | cut -c 1-8)" | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | |
git push |