Skip to content

Commit f2c48cd

Browse files
committed
ci: Fix job dependencies
The `nox` job makes `publish-docs` depend on every `nox` job matrix entry, while the `nox-all` is a join point for them. Depending on both has the same effect, but the dependency graph looks nicer if we depend on `nox-all` instead. Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 881fb1a commit f2c48cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ jobs:
301301

302302
publish-docs:
303303
name: Publish documentation website to GitHub pages
304-
needs: ["nox", "nox-cross-arch-all", "test-installation"]
304+
needs: ["nox-all", "nox-cross-arch-all", "test-installation"]
305305
if: github.event_name == 'push'
306306
runs-on: ubuntu-20.04
307307
permissions:

0 commit comments

Comments
 (0)