File tree Expand file tree Collapse file tree 6 files changed +70
-7
lines changed
Expand file tree Collapse file tree 6 files changed +70
-7
lines changed Original file line number Diff line number Diff line change 1+ name : deploy_pages
2+
3+ on :
4+ workflow_run :
5+ workflows : [documentation]
6+ types : [completed]
7+ branches : [main]
8+
9+ permissions :
10+ contents : read
11+
12+ jobs :
13+ deploy :
14+ runs-on : ubuntu-latest
15+ environment :
16+ name : github-pages
17+ url : ${{ steps.deployment.outputs.page_url }}
18+ permissions :
19+ pages : write
20+ id-token : write
21+ if : ${{ github.event.workflow_run.conclusion == 'success'}}
22+ steps :
23+ - uses : dawidd6/action-download-artifact@v11
24+ with :
25+ workflow : documentation.yml
26+ name : documentation
27+ path : ${{ github.workspace }}/docs
28+ branch : ${{ github.event.repository.default_branch }}
29+ - uses : actions/upload-pages-artifact@v4
30+ with :
31+ path : ${{ github.workspace }}/docs
32+ retention-days : 1
33+ - uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 1+ name : documentation
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ branches : [main]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v3
14+ - uses : actions/setup-python@v4
15+ with :
16+ python-version : " 3.12"
17+ - name : Install dependencies
18+ run : |
19+ pip install -r requirements-dev.txt
20+ pip install -e .
21+ - name : Create documentation
22+ run : pdoc biomesh -o docs
23+ - uses : actions/upload-artifact@v4
24+ with :
25+ name : documentation
26+ path : docs/
27+ if-no-files-found : error
Original file line number Diff line number Diff line change 99 pre-commit :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v3
13- - uses : actions/setup-python@v3
14- - uses : pre-commit/action@v3.0.1
15- env :
16- SKIP : no-commit-to-branch
12+ - uses : actions/checkout@v3
13+ - uses : actions/setup-python@v3
14+ with :
15+ python-version : " 3.12"
16+ - uses : pre-commit/action@v3.0.1
17+ env :
18+ SKIP : no-commit-to-branch
Original file line number Diff line number Diff line change 22.pytest_cache
33__pycache__
44* .pyc
5+ docs /
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ pip install gmsh
1919## :book : Usage
2020
2121` biomesh ` is composed of multiple utilities for working with complex biomechanical geometries. Below
22- are some common workflows
22+ are some common workflows. Extensive documentation can be found [ here ] ( https://tum-lnm.github.io/biomesh/docs ) .
2323
2424### Generate a mesh from colored STL files
2525
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " biomesh"
7- version = " 0.6.0 "
7+ version = " 0.6.1 "
88authors = [
99 { name =" The biomesh Authors" },
1010]
You can’t perform that action at this time.
0 commit comments