Compare commits

..

1 Commits

Author SHA1 Message Date
99c98fa0b4 chore: update name
Some checks failed
Test Action / Test nginx (pull_request) Failing after 7s
Test Action / Test Without Dependencies (pull_request) Successful in 8s
Test Action / Test Node (pull_request) Successful in 18s
Test Action / Test Build Command (pull_request) Successful in 24s
Test Action / Test Custom Server Path (pull_request) Successful in 30s
Test Action / Test All Components (pull_request) Failing after 1m25s
Test Action / Test PHP (pull_request) Failing after 1m30s
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-02-14 16:48:18 -05:00

View File

@@ -43,7 +43,7 @@ inputs:
description: 'Comma-separated list of PHP extensions to install'
required: false
default: 'mbstring, xml, ctype, json, curl, zip'
nginx-config:
web-config:
description: 'Path to nginx configuration file (optional)'
required: false
default: ''
@@ -140,7 +140,7 @@ runs:
coverage: none
- name: Install nginx
if: inputs.install-nginx == 'true'
if: inputs.install-web-server == 'true'
shell: bash
run: |
echo "::group::Installing nginx"
@@ -151,7 +151,7 @@ runs:
echo "::endgroup::"
- name: Configure nginx
if: inputs.install-nginx == 'true' && inputs.nginx-config != ''
if: inputs.install-web-server == 'true' && inputs.nginx-config != ''
shell: bash
run: |
echo "::group::Configuring nginx"
@@ -168,7 +168,7 @@ runs:
echo "::endgroup::"
- name: Start nginx
if: inputs.install-nginx == 'true'
if: inputs.install-web-server == 'true'
shell: bash
run: |
echo "::group::Starting nginx"
@@ -211,7 +211,7 @@ runs:
cd "${{ inputs.server-path }}"
if [ -f "composer.json" ]; then
composer install --optimize-autoloader
composer install --no-dev --optimize-autoloader
echo "PHP dependencies installed successfully"
else
echo "::warning::composer.json not found, skipping PHP dependency installation"