Skip to content

Commit

Permalink
Merge pull request #24 from Seshat-Global-History-Databank/kalleweste…
Browse files Browse the repository at this point in the history
…rling/issue23

Adding `docs` workflow to GitHub actions
  • Loading branch information
kallewesterling authored Jul 12, 2024
2 parents c1d38f4 + e5b07f6 commit ec5a353
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: docs
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
concurrency:
group: docs
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8.13
- name: "Upgrade pip"
run: pip install --upgrade pip
- name: "Install docs requirements"
run: pip install -r docs/requirements.txt
- name: "Run sphinx"
run: sphinx-build -b html docs/source docs/_build/
# Note that we're adding deployment for dev branch here.
# In the future, we may want to add a separate workflow for dev branch.
- name: "Deploy"
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/docs' || github.ref == 'refs/heads/dev') }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html/
force_orphan: true

0 comments on commit ec5a353

Please sign in to comment.