Merge pull request #11 from mh105/main #16
Workflow file for this run
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: Publish docs | |
on: push | |
jobs: | |
build: | |
name: Build docs | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Prepare to build pytables for macos | |
if: runner.os == 'macOS' | |
run: | | |
brew install hdf5 | |
export HDF5_DIR=$(brew --prefix hdf5) | |
python3 -m pip install numpy numexpr cython | |
- name: Install package and dependencies | |
run: python3 -m pip install -e .[docs] | |
- name: Build docs | |
run: sphinx-build docs_src docs -b dirhtml | |
- name: Bypass Jekyll | |
run: echo "" > docs/.nojekyll | |
- name: Commit | |
run: | | |
git add --all | |
git commit --all -m "sys: Build documentation" | |
- name: Push | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
force: true |