Trivial tweaks to commit instructions (#73) #34
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: Build and Deploy Docs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened,reopened,review_requested] | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: set git user | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "SSD Developers" | |
- name: Check out source | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install Sphinx packages | |
run: | | |
pip install Sphinx==4.5.0 | |
pip install sphinx-design==0.0.13 | |
pip install sphinx-rtd-theme==1.2.0 | |
- name: build docs | |
run: | | |
make clean html | |
- name: commit docs to gh-pages branch | |
if: ${{ github.event_name == 'push' && github.ref_name == 'main' }} | |
run: | | |
git worktree add ../publish_wps | |
cd ../publish_wps | |
git fetch origin gh-pages | |
git checkout gh-pages | |
cp -r ../simulation-systems/build/html/. . | |
git commit -am "Docs build" | |
git push -u origin gh-pages |