Skip to content

Commit 0f99a84

Browse files
authored
🩹📄Fix JSON-Schema links in documentation (#795)
1 parent d3ccf64 commit 0f99a84

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

‎.github/workflows/docs_latest.yml‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ jobs:
4545
run: tox -e generate_json_schemas
4646
env:
4747
TARGET_VERSION: ${{ env.REF_NAME }}
48+
- name: Build BO4E package
49+
# Note: This step necessary to correctly set the version in the JSON-Schema-links
50+
run: |
51+
pip install -e .
52+
python -c "import bo4e; print(bo4e.__gh_version__)"
4853
- name: Run kroki with docker
4954
run: |
5055
docker compose up -d

‎.github/workflows/python-publish.yml‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ jobs:
9797
run: tox -e generate_json_schemas
9898
env:
9999
TARGET_VERSION: ${{ github.ref_name }}
100+
- name: Build BO4E package
101+
# Note: This step necessary to correctly set the version in the JSON-Schema-links
102+
run: |
103+
pip install -e .
104+
python -c "import bo4e; print(bo4e.__gh_version__)"
100105
- name: Run kroki with docker
101106
run: |
102107
docker compose up -d

0 commit comments

Comments
 (0)