From 41557449fe03d85a3926ebfef69db8da6cebd20b Mon Sep 17 00:00:00 2001 From: Philipp Bammes Date: Mon, 30 Sep 2024 15:20:23 +0200 Subject: [PATCH] fix(docs): fix input description in documentation This was wrongly merged in one of the previous merges. --- docs/archive-creation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/archive-creation.md b/docs/archive-creation.md index b5f52f68..00531ec8 100644 --- a/docs/archive-creation.md +++ b/docs/archive-creation.md @@ -49,8 +49,8 @@ jobs: | `NODE_VERSION` | `18` | Node version with which the assets will be compiled | | `NPM_REGISTRY_DOMAIN` | `'https://npm.pkg.github.com/'` | Domain of the private npm registry | | `PACKAGE_MANAGER` | `'yarn'` | Package manager with which the dependencies should be installed (`npm` or `yarn`) | -| `COMPOSER_ARGS` | `'--no-dev --no-scripts --prefer-dist --optimize-autoloader'` | Set of arguments passed to Composer | -| `PHP_VERSION` | `'8.2'` | PHP version to use during packaging | +| `COMPOSER_ARGS` | `'--no-dev --no-scripts --prefer-dist --optimize-autoloader'` | Set of arguments passed to Composer when gathering production dependencies | +| `PHP_VERSION` | `'8.2'` | PHP version to use when gathering production dependencies | | `PHP_VERSION_BUILD` | `'8.2'` | PHP version to use when executing build tools | | `ARCHIVE_NAME` | `''` | The name of the zip archive (falls back to the repository name) | | `PLUGIN_MAIN_FILE` | `'index.php'` | The name of the main plugin file |