Skip to content

Commit 37f612d

Browse files
Merge branch 'main' into develop
2 parents 4c85a1e + caaf785 commit 37f612d

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

.github/workflows/test_build_documentation.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
- develop
87
pull_request:
98
types: [opened, synchronize, reopened, ready_for_review]
109
branches:
@@ -16,25 +15,24 @@ jobs:
1615
if: github.event.pull_request.draft == false
1716
name: Build documentation
1817
runs-on: ubuntu-latest
19-
permissions:
20-
pages: write
21-
strategy:
22-
fail-fast: false
2318
steps:
2419
- uses: actions/checkout@v4
2520
with:
2621
fetch-depth: 0
22+
token: ${{ secrets.GH_PAT }}
2723
- uses: ./.github/actions/install_eitprocessing
2824
with:
2925
dependencies: docs
3026
extract-data: false
3127
python-version: "3.10"
28+
- name: Link notebooks
29+
run: ln -s ../../notebooks docs/examples
3230
- name: Build documentation
33-
run: |
34-
ln -s ../../notebooks docs/examples
35-
mkdocs build
36-
- name: Deploy documentation
31+
if: ${{ !(github.event_name == 'push' && github.ref == 'refs/heads/main') }}
32+
run: mkdocs build
33+
- name: Build and deploy documentation
3734
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
3835
run: |
39-
GIT_COMMITTER_NAME=ci-bot GIT_COMMITTER_EMAIL=ci-bot@github.com \
36+
git config --local user.email "github-actions[bot]@users.noreply.github.com"
37+
git config --local user.name "github-actions[bot]"
4038
mike deploy --push --update-aliases $(git describe --tags --abbrev=0 | sed -E 's/^([vV]?[0-9]+\.[0-9]+).*/\1/') latest

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ authors:
3939

4040
date-released: 2023-03-23
4141
doi: 10.5281/zenodo.7869553
42-
version: "1.8.1"
42+
version: "1.8.2"
4343
repository-code: "https://github.com/EIT-ALIVE/eitprocessing"
4444
keywords:
4545
- Mechanical lung ventilation

eitprocessing/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.8.1"
1+
__version__ = "1.8.2"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "eitprocessing"
7-
version = "1.8.1"
7+
version = "1.8.2"
88
description = "Processing of lung image data from electrical impedance tomography."
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -174,7 +174,7 @@ isort.known-first-party = ["eitprocessing"]
174174
"docs/*" = ["ALL"]
175175

176176
[tool.bumpversion]
177-
current_version = "1.8.1"
177+
current_version = "1.8.2"
178178

179179
[[tool.bumpversion.files]]
180180
filename = "pyproject.toml"

0 commit comments

Comments
 (0)