Skip to content

Commit

Permalink
🩹📄Fix JSON-Schema links in documentation (#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
lord-haffi authored May 13, 2024
1 parent d3ccf64 commit 0f99a84
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/docs_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ jobs:
run: tox -e generate_json_schemas
env:
TARGET_VERSION: ${{ env.REF_NAME }}
- name: Build BO4E package
# Note: This step necessary to correctly set the version in the JSON-Schema-links
run: |
pip install -e .
python -c "import bo4e; print(bo4e.__gh_version__)"
- name: Run kroki with docker
run: |
docker compose up -d
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@ jobs:
run: tox -e generate_json_schemas
env:
TARGET_VERSION: ${{ github.ref_name }}
- name: Build BO4E package
# Note: This step necessary to correctly set the version in the JSON-Schema-links
run: |
pip install -e .
python -c "import bo4e; print(bo4e.__gh_version__)"
- name: Run kroki with docker
run: |
docker compose up -d
Expand Down

0 comments on commit 0f99a84

Please sign in to comment.