Revert "ci(ci): avoid running build jobs twice on pushes to main"

This reverts commit 840d3f99ed.

This was a nice idea in theory, but in practice this means that the
build jobs do not run at all on the default branch anymore. This means
the caches they push to won't be used by any other jobs, neither on the
tag pipelines, nor on PRs. This in turn makes all of these jobs really
slow.

Not helpful!
This commit is contained in:
Wolfgang Walther
2026-06-10 15:04:34 +02:00
parent 4e68ffbc92
commit 2e4b72d130
+8
View File
@@ -29,6 +29,13 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
build:
name: Build
uses: ./.github/workflows/build.yaml
secrets:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
tag:
name: Tag
concurrency:
@@ -40,6 +47,7 @@ jobs:
needs:
- docs
- test
- build
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with: