From 9c1f01a4f7909dfe7a8245e1a23c2953c6e40440 Mon Sep 17 00:00:00 2001 From: Roman Lebedev Date: Sat, 6 Dec 2025 05:21:05 +0300 Subject: [PATCH] Deb orchestrator: don't gate on success of all builds, publish as-is --- .github/workflows/deb-orchestrator.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deb-orchestrator.yml b/.github/workflows/deb-orchestrator.yml index 8909be8a..01e2afa3 100644 --- a/.github/workflows/deb-orchestrator.yml +++ b/.github/workflows/deb-orchestrator.yml @@ -104,7 +104,7 @@ jobs: GPG_SIGNING_SUBKEY_FINGERPRINT: ${{ secrets.GPG_SIGNING_SUBKEY_FINGERPRINT }} publish: needs: [ source-only, buildd, reprotest ] - if: github.event_name != 'pull_request' && (github.ref_type == 'tag' || (github.ref_type == 'branch' && github.ref_name == 'master')) + if: (success() || failure()) && (github.event_name != 'pull_request' && (github.ref_type == 'tag' || (github.ref_type == 'branch' && github.ref_name == 'master'))) uses: ./.github/workflows/deb-publish.yml with: runs-on: ubuntu-24.04