fix bug with spherical shape enclosure #3
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: documentation update dev | |
on: | |
pull_request: | |
branches: | |
- dev | |
- main | |
push: | |
branches: | |
- main | |
- dev | |
permissions: | |
contents: write | |
jobs: | |
testing: | |
name: Documentation | |
runs-on: "ubuntu-latest" | |
defaults: | |
run: | |
shell: bash -el {0} | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- name: checkout actions | |
uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
channels: conda-forge | |
- name: install dependencies | |
run: conda install -c conda-forge freecad -y | |
- name: install package | |
run: | | |
pip install --upgrade pip | |
pip install .[docs] | |
- name: Sphinx build | |
run: | | |
sphinx-build docs _build/dev | |
- name: Deploy to GitHub Pages | |
if: github.event_name == 'push' | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: _build | |
# with next rlease of actions-gh-pages | |
# issue to allow force_orphan will be fixed | |
# https://github.com/peaceiris/actions-gh-pages/issues/455 | |
# force_orphan: true | |
keep_files: true |