Skip to content

Merge pull request #11 from mh105/main #16

Merge pull request #11 from mh105/main

Merge pull request #11 from mh105/main #16

Workflow file for this run

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