Update release notes #41
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 Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
doc-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ammaraskar/sphinx-action@master | |
with: | |
docs-folder: "src_docs/" | |
pre-build-command: | | |
pip install --upgrade pip | |
pip install sphinx==4.3.2 | |
pip install docutils==0.16 | |
pip install pygments==2.11.1 | |
pip install furo==2022.1.2 | |
pip install sphinx-copybutton | |
pip list | |
build-command: "sphinx-build -b html ./source ../docs" | |
- name: Commit documentation changes | |
run: | | |
pwd | |
ls -al | |
ls -al docs | |
git clone https://github.com/mp-se/kegmon.git --branch ghpages --single-branch ghpages | |
mkdir -p ghpages/docs | |
cp -r docs/* ghpages/docs | |
cd ghpages | |
touch docs/.nojekyll | |
git config --local user.email "action@noreply.github.com" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "Update documentation" -a || true | |
# The above command will fail if no changes were present, so we ignore | |
# the return code. | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
branch: ghpages | |
directory: ghpages | |
github_token: ${{ secrets.GITHUB_TOKEN }} |