fix: allways run production condition
All checks were successful
Self Test / test (push) Successful in 14s
All checks were successful
Self Test / test (push) Successful in 14s
This commit is contained in:
parent
a6eafada1a
commit
be5d9ca954
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue