From fdd7e32c72ef29c19fde2fbcd6035651e27fea74 Mon Sep 17 00:00:00 2001 From: Filip Langer Date: Thu, 16 Apr 2026 23:42:00 +0200 Subject: [PATCH] fix: Fixing conditions syntax error. --- .gitea/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index ea9a839..e6f8bae 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -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