diff --git a/.forgejo/workflows/typo3-staged-deploy.yaml b/.forgejo/workflows/typo3-staged-deploy.yaml index 32b0e41..20ece0d 100644 --- a/.forgejo/workflows/typo3-staged-deploy.yaml +++ b/.forgejo/workflows/typo3-staged-deploy.yaml @@ -90,7 +90,7 @@ jobs: tools: composer - name: Setup Node.js - if: ${{ inputs.build_frontend }} + if: ${{ inputs.build_frontend == 'true' }} uses: actions/setup-node@v4 with: node-version: ${{ inputs.node_version }} @@ -99,7 +99,7 @@ jobs: run: composer install --prefer-dist --no-progress --no-dev --ignore-platform-reqs - name: Install Node dependencies & build - if: ${{ inputs.build_frontend }} + if: ${{ inputs.build_frontend == 'true' }} run: | npm ci npm run build @@ -186,7 +186,7 @@ jobs: name: E2E Tests runs-on: ubuntu-latest needs: [switch-stage] - if: ${{ inputs.run_e2e_tests }} + if: ${{ inputs.run_e2e_tests == 'true' }} container: image: mcr.microsoft.com/playwright:v1.50.0-noble @@ -234,7 +234,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: ${{ inputs.deploy_production == 'true' && (needs.test-stage.result == 'success' || needs.test-stage.result == 'skipped') }} steps: - name: Setup PHP