From be5d9ca954296b3d2436f62ce635c6583d1dc121 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 3 Feb 2026 10:56:43 +0100 Subject: [PATCH] fix: allways run production condition --- .forgejo/workflows/typo3-deploy-stage.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/typo3-deploy-stage.yaml b/.forgejo/workflows/typo3-deploy-stage.yaml index 84aa0d7..fbd3672 100644 --- a/.forgejo/workflows/typo3-deploy-stage.yaml +++ b/.forgejo/workflows/typo3-deploy-stage.yaml @@ -186,7 +186,7 @@ jobs: name: Deploy Production runs-on: ubuntu-latest needs: [test-stage] - if: ${{ inputs.deploy_production && (needs.test-stage.result == 'success' || needs.test-stage.result == 'skipped') }} + if: ${{ always() && inputs.deploy_production && (needs.test-stage.result == 'success' || needs.test-stage.result == 'skipped') }} steps: - name: Setup PHP