Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/_changelog_entry_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ jobs:
pipx install --python ${{ env.PYTHON_VERSION }} poetry
make install-dev

- name: Execute changelog entry check
- name: Run changelog entry check
run: make check-changelog-entry
2 changes: 1 addition & 1 deletion .github/workflows/_version_conflict_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ jobs:
pipx install --python ${{ env.PYTHON_VERSION }} poetry
make install-dev

- name: Execute version conflict check
- name: Run version conflict check
run: make check-version-conflict
3 changes: 1 addition & 2 deletions .github/workflows/build_and_deploy_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ jobs:
run: make build-api-reference

- name: Build Docusaurus docs
run: npm run build
working-directory: ./website
run: make build-docs

- name: Set up GitHub Pages
uses: actions/configure-pages@v5
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ check-code: lint type-check unit-tests check-changelog-entry check-version-confl
build-api-reference:
cd website && poetry run ./build_api_reference.sh

build-docs: build-api-reference
build-docs:
cd website && npm clean-install && npm run build

run-docs: build-api-reference
Expand Down