From 2e4b72d130d4df69f0becd0eb9191632acb6ade6 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Wed, 10 Jun 2026 14:04:03 +0200 Subject: [PATCH] Revert "ci(ci): avoid running build jobs twice on pushes to main" This reverts commit 840d3f99edaeed964783c98990a051fc7e30e586. 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! --- .github/workflows/ci.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b308c810a..ae11886a4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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: