From edd7f001abfbcc316cd31c7d8fd48a8353daaf32 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Wed, 10 Jun 2026 12:10:32 +0100 Subject: [PATCH] Restore pulse:test image build in the e2e workflow The Core E2E workflow on this branch lost the 'docker build -t pulse:test --target runtime .' line that release/5.1 still has, so every dispatched run failed at compose-up with 'pull access denied for pulse'. Masked until now because the workflow only auto-triggers on main. --- .github/workflows/test-e2e.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 269c049d7..9ca26e257 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -52,6 +52,7 @@ jobs: - name: Build Docker images for test environment run: | + docker build -t pulse:test --target runtime . docker build -t pulse-mock-github:test ./tests/integration/mock-github-server env: PULSE_LICENSE_PUBLIC_KEY: ${{ secrets.PULSE_LICENSE_PUBLIC_KEY }}