Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/deploy-deployer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ on:
default: '8.2'
required: false
type: string
PHP_TOOLS:
description: PHP tools supported by shivammathur/setup-php to be installed.
default: ''
required: false
type: string
PHP_EXTENSIONS:
description: PHP extensions supported by shivammathur/setup-php to be installed or disabled.
default: ''
Expand Down Expand Up @@ -78,7 +83,7 @@ jobs:
with:
php-version: ${{ inputs.PHP_VERSION }}
extensions: ${{ inputs.PHP_EXTENSIONS }}
tools: composer
tools: composer, ${{ inputs.PHP_TOOLS }}
coverage: none

- name: Set up WireGuard
Expand Down
17 changes: 9 additions & 8 deletions docs/deploy-deployer.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,15 @@ jobs:

### Inputs

| Name | Default | Description |
|-----------------------|---------------------------------|--------------------------------------------------------------------------------|
| `ENVIRONMENT` | | Name of the target environment to load Deployer settings |
| `VERBOSITY` | `'v'` | Deployer command verbosity |
| `PHP_VERSION` | `'8.2'` | PHP version with which the scripts are executed |
| `PHP_EXTENSIONS` | `''` | PHP extensions supported by shivammathur/setup-php to be installed or disabled |
| `NODE_VERSION` | `'22'` | Node.js version to use when npm workspaces are detected |
| `NPM_REGISTRY_DOMAIN` | `'https://npm.pkg.github.com/'` | Domain of the private npm registry |
| Name | Default | Description |
|-----------------------|---------------------------------|---------------------------------------------------------------------------------------------------------------------------------|
| `ENVIRONMENT` | | Name of the target environment to load Deployer settings |
| `VERBOSITY` | `'v'` | Deployer command verbosity |
| `PHP_VERSION` | `'8.2'` | PHP version with which the scripts are executed |
| `PHP_EXTENSIONS` | `''` | PHP extensions supported by shivammathur/setup-php to be installed or disabled |
| `PHP_TOOLS` | `''` | PHP tools supported by [shivammathur/setup-php](https://github.com/shivammathur/setup-php#wrench-tools-support) to be installed |
| `NODE_VERSION` | `'22'` | Node.js version to use when npm workspaces are detected |
| `NPM_REGISTRY_DOMAIN` | `'https://npm.pkg.github.com/'` | Domain of the private npm registry |

### Secrets

Expand Down
Loading