More improvements
This commit is contained in:
parent
4c5fbf7ddd
commit
5d5514b575
1 changed files with 3 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ runs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- id: read-php-version
|
- id: read-php-version
|
||||||
|
name: "Read PHP Version"
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: ${{ inputs.working_directory }}
|
working-directory: ${{ inputs.working_directory }}
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -43,6 +44,7 @@ runs:
|
||||||
php-version: ${{ steps.read-php-version.outputs.php_version }}
|
php-version: ${{ steps.read-php-version.outputs.php_version }}
|
||||||
tools: ${{ inputs.php_tools }}
|
tools: ${{ inputs.php_tools }}
|
||||||
- id: composer-cache-find
|
- id: composer-cache-find
|
||||||
|
name: "Find Composer Cache"
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
{
|
{
|
||||||
|
|
@ -68,6 +70,7 @@ runs:
|
||||||
path: ${{ steps.composer-cache-find.outputs.dir }}
|
path: ${{ steps.composer-cache-find.outputs.dir }}
|
||||||
key: ${{ steps.composer-cache-find.outputs.key }}
|
key: ${{ steps.composer-cache-find.outputs.key }}
|
||||||
- id: emit-php-detected
|
- id: emit-php-detected
|
||||||
|
name: "Emit PHP Detected"
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
PHP_VERSION=$(php -v | head -n 1 | cut -d ' ' -f 2 | cut -d '.' -f 1,2)
|
PHP_VERSION=$(php -v | head -n 1 | cut -d ' ' -f 2 | cut -d '.' -f 1,2)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue