Fix docs workflow

This commit is contained in:
Shivam Mathur 2020-12-01 08:48:41 +05:30
parent c0c6e403b6
commit 5a15252e66
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -1,8 +1,8 @@
name: Docs workflow name: Docs workflow
on: on:
repository_dispatch: workflow_dispatch:
schedule: schedule:
- cron: '0 0 * * 2' - cron: '0 15 * * 2'
jobs: jobs:
create: create:
name: Create name: Create
@ -35,7 +35,7 @@ jobs:
version: ${{ matrix.php-versions }} version: ${{ matrix.php-versions }}
if: matrix.operating-system == 'windows-2019' if: matrix.operating-system == 'windows-2019'
run: | run: |
Write-Output "## PHP $version`n" | Out-File -FilePath "$env:file" Write-Output "## PHP ${{ matrix.php-versions }}`n" | Out-File -FilePath "$env:file"
Write-Output "``````" | Out-File -FilePath "$env:file" -Append Write-Output "``````" | Out-File -FilePath "$env:file" -Append
php -m | Out-File -FilePath "$env:file" -Append php -m | Out-File -FilePath "$env:file" -Append
Write-Output "```````n" | Out-File -FilePath "$env:file" -Append Write-Output "```````n" | Out-File -FilePath "$env:file" -Append
@ -60,9 +60,9 @@ jobs:
git config --local user.email "${{ secrets.email }}" git config --local user.email "${{ secrets.email }}"
git config --local user.name "${{ github.repository_owner }}" git config --local user.name "${{ github.repository_owner }}"
for os in ubuntu-20.04 ubuntu-18.04 ubuntu-16.04 windows-2019 macos-10.15 macos-11.0; do for os in ubuntu-20.04 ubuntu-18.04 ubuntu-16.04 windows-2019 macos-10.15 macos-11.0; do
echo "# PHP Extensions on $os" > Php-extensions-on-"$os".md echo "These are extensions which are loaded by default on the following PHP versions. More extensions which are available as packages and available on pecl are supported by setup-php. Refer to [php extension support](https://github.com/shivammathur/setup-php#heavy_plus_sign-php-extension-support) for more details." > Php-extensions-loaded-on-"$os".md
for version in 5.3 5.4 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1; do for version in 5.3 5.4 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1; do
cat lists/php"$version"-"$os".md >> Php-extensions-on-"$os".md cat lists/php"$version"-"$os".md >> Php-extensions-loaded-on-"$os".md
done done
done done
rm -rf ./lists rm -rf ./lists