fix: allways run production condition
All checks were successful
Self Test / test (push) Successful in 14s

This commit is contained in:
Dominik Polakovics Polakovics 2026-02-03 10:56:43 +01:00
parent a6eafada1a
commit be5d9ca954

View file

@ -186,7 +186,7 @@ jobs:
name: Deploy Production name: Deploy Production
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [test-stage] 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: steps:
- name: Setup PHP - name: Setup PHP