chore(ci): only notify after build.

This commit is contained in:
Matthias
2025-11-25 19:44:10 +01:00
parent 6b8968ed0f
commit f4920f199c

View File

@@ -275,10 +275,7 @@ jobs:
# Notify only once - when CI completes (and after deploy) in case it's successful # Notify only once - when CI completes (and after deploy) in case it's successful
notify-complete: notify-complete:
needs: [ needs: [
tests, build,
docs-check,
mypy-version-check,
pre-commit,
build-linux-online build-linux-online
] ]
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
@@ -308,7 +305,12 @@ jobs:
build: build:
if: always() if: always()
name: "Build" name: "Build"
needs: [ tests, docs-check, mypy-version-check, pre-commit ] needs: [
tests,
docs-check,
mypy-version-check,
pre-commit,
]
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps: