From cba97991f33435f32ba2e63906e2a2f5de3e34b2 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 3 Feb 2026 11:09:25 +0100 Subject: [PATCH] try to fix production run --- .forgejo/workflows/typo3-deploy-stage.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/typo3-deploy-stage.yaml b/.forgejo/workflows/typo3-deploy-stage.yaml index fbd3672..685aa38 100644 --- a/.forgejo/workflows/typo3-deploy-stage.yaml +++ b/.forgejo/workflows/typo3-deploy-stage.yaml @@ -185,8 +185,8 @@ jobs: deploy-production: name: Deploy Production runs-on: ubuntu-latest - needs: [test-stage] - if: ${{ always() && inputs.deploy_production && (needs.test-stage.result == 'success' || needs.test-stage.result == 'skipped') }} + needs: [switch-stage, test-stage] + if: ${{ always() && inputs.deploy_production && needs.switch-stage.result == 'success' && needs.test-stage.result != 'failure' }} steps: - name: Setup PHP