fix: Fixing conditions syntax error.
Build and Push Docker Image / changes (push) Successful in 6s
Build and Push Docker Image / build-apache (push) Successful in 7s
Build and Push Docker Image / build-php (push) Failing after 3m6s

This commit is contained in:
2026-04-16 23:42:00 +02:00
parent f00aa2e52d
commit fdd7e32c72
+2 -2
View File
@@ -30,7 +30,7 @@ jobs:
build-apache:
needs: changes
if: ${{ needs.changes.outputs.apache == 'true' }}
if: "${{ needs.changes.outputs.apache == 'true' }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@@ -40,7 +40,7 @@ jobs:
build-php:
needs: changes
if: ${{ needs.changes.outputs.php == 'true' }}
if: "${{ needs.changes.outputs.php == 'true' }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3