Skip to content

Commit 62de501

Browse files
authored
ci: align workflows with other repositories (#297)
1 parent e7f5f83 commit 62de501

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/_changelog_entry_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
pipx install --python ${{ env.PYTHON_VERSION }} poetry
2727
make install-dev
2828
29-
- name: Execute changelog entry check
29+
- name: Run changelog entry check
3030
run: make check-changelog-entry

.github/workflows/_version_conflict_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ jobs:
2626
pipx install --python ${{ env.PYTHON_VERSION }} poetry
2727
make install-dev
2828
29-
- name: Execute version conflict check
29+
- name: Run version conflict check
3030
run: make check-version-conflict

.github/workflows/build_and_deploy_docs.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ jobs:
6363
run: make build-api-reference
6464

6565
- name: Build Docusaurus docs
66-
run: npm run build
67-
working-directory: ./website
66+
run: make build-docs
6867

6968
- name: Set up GitHub Pages
7069
uses: actions/configure-pages@v5

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ check-code: lint type-check unit-tests check-changelog-entry check-version-confl
5555
build-api-reference:
5656
cd website && poetry run ./build_api_reference.sh
5757

58-
build-docs: build-api-reference
58+
build-docs:
5959
cd website && npm clean-install && npm run build
6060

6161
run-docs: build-api-reference

0 commit comments

Comments
 (0)