v1 of this repository used a totally different architecture and had different goals to the current version. Previously, a customised Dockerfile was used as the base for all php-actions repositories, but now php-actions workflows run as composite run steps, building a customised docker image per-application, based off the official PHP script.
The bash script within this repository is run as composite run steps in php-actions repositories. It builds a minimal docker image for running each particular php-action job and pushes the built image as a package, stored on the repository that is using the action.
You do not need to know the following information if you want to use a php-actions Github Action within your own repository - only if you are planning on contributing to the php-actions base Docker image.
The following environment variables must be passed to the composite run step:
GITHUB_ACTOR
- The name of the person or app that initiated the workflow, for example:g105b
. This user will be used to authenticate the pull/push of the Docker image.GITHUB_REPOSITORY
- The owner and repository name of the repository running the action, for example:phpgt/database
. This is where the built image will be pushed to as a package.ACTION_TOKEN
- The Github PAT used to authenticate thedocker login
step. This is probably taken directly from thegithub.token
secret, which is generated automatically by the action runner.ACTION_PHP_VERSION
- The semver version number string of the required PHP version to use.
The following environment variables are optionally passed to the composite run step:
ACTION_PHP_EXTENSIONS
- A space-separated list of extensions to enable.
The ACTION_PHP_VERSION
environment variable must be passed to the composite run step. This string must match any of the officially supported PHP version numbers (version number only, with no derivative text, e.g. 8.0.1
or 8
rather than 8-cli
).
The official Alpine CLI build of the requested version will be used as the image's base.
The ACTION_PHP_EXTENSIONS
environment variable can be passed to the composite run step. This string must be a space separated list of all extension names required by the running action's repository. The names of the extensions may also include a version number to use.
For example: gd xdebug-2.9.7 zip
.
The functionality of building PHP extensions is provided by mlocati's docker-php-extension-installer repository. A full list of supported extension names is available within the readme.
Once the Docker image is built and tagged, the name of the tag will be written to a file called docker_tag
within the current working directory. This can then be read by a subsequent script.
This repo, php-build
shouldn't change very regularly, but when it does, the entire build pipeline of dependent repositories will need refreshing. This is done by adding the version of php-build
to the end of build package names. When a new release is made that affects php-build functionality, the variable at the top of php-build.bash
can be updated to invalidate any caches.
Within other repositories that use php-build
, they can refer to the specific version of the script by addressing its git commit hash. For example: https://raw.githubusercontent.com/php-actions/php-build/27be075494ae8a9bc0d10deb408e37b197986b8a/php-build.bash
If you found this repository helpful, please consider sponsoring the developer.