File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -958,6 +958,14 @@ jobs:
958
958
echo "php_versions=$PHP_VERSIONS" >> $GITHUB_OUTPUT
959
959
echo "🔍 Dynamic PHP versions: $PHP_VERSIONS"
960
960
961
+ - name : Format PHP versions for release
962
+ id : format-versions
963
+ run : |
964
+ # Convert JSON array to comma-separated string
965
+ PHP_VERSIONS_JSON='${{ needs.get-php-versions.outputs.php_versions }}'
966
+ PHP_VERSIONS_STRING=$(echo "$PHP_VERSIONS_JSON" | jq -r 'join(", ")')
967
+ echo "php_versions_string=$PHP_VERSIONS_STRING" >> $GITHUB_OUTPUT
968
+
961
969
- name : Download all artifacts
962
970
uses : actions/download-artifact@v4
963
971
with :
@@ -1014,7 +1022,7 @@ jobs:
1014
1022
> This release contains precompiled PHP binaries optimized for modern PHP usage
1015
1023
1016
1024
- **Platforms**: Linux (x86_64), macOS (ARM64 & Intel)
1017
- - **PHP Versions**: ${{ fromJSON(needs.get-php- versions.outputs.php_versions).join(', ') }}
1025
+ - **PHP Versions**: ${{ steps.format- versions.outputs.php_versions_string }}
1018
1026
- **Configuration Options**:
1019
1027
- `laravel-mysql`: Laravel applications using MySQL or MariaDB
1020
1028
- `laravel-postgres`: Laravel applications using PostgreSQL
You can’t perform that action at this time.
0 commit comments