Skip to content

Commit

Permalink
Fixed github script output
Browse files Browse the repository at this point in the history
  • Loading branch information
d-miles committed Aug 18, 2024
1 parent 1c4dd44 commit 2c77a3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ jobs:
with:
script: |
return {
CURRENT_VERSION: ${{ github.ref_name }},
MIN_PHP_VERSION: ${{ fromJSON(needs.supported-php-versions.outputs.php-versions) }}[0],
TESTED_PHP_VERSIONS: ${{ fromJSON(needs.supported-php-versions.outputs.php-versions) }}.join(', '),
CURRENT_VERSION: '${{ github.ref_name }}',
MIN_PHP_VERSION: (${{ needs.supported-php-versions.outputs.php-versions }})[0],
TESTED_PHP_VERSIONS: ${{ needs.supported-php-versions.outputs.php-versions }}.join(', '),
};
result-encoding: string

Expand Down

0 comments on commit 2c77a3d

Please # to comment.