Sync PHP Package Versions #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync PHP Package Versions | |
permissions: | |
contents: write | |
on: | |
workflow_dispatch: | |
workflow_call: | |
schedule: | |
- cron: "20 4 * * *" | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
name: PHP ${{ matrix.php-versions }} | |
strategy: | |
matrix: | |
operating-system: ['ubuntu-latest'] | |
php-versions: | |
- '7.4' | |
- '8.0' | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "PHP 8.3" | |
run: | | |
php generate.php ${{ matrix.php-versions }} | |
- name: List dirs | |
run: find data | sed -e "s/[^-][^\/]*\// |/g" -e "s/|\([^ ]\)/|-\1/" | |
# collect: | |
# needs: run | |
# runs-on: ubuntu-latest | |
# name: Collect and Commit Data | |
# permissions: | |
# contents: write | |
# | |
# steps: | |
# - uses: actions/checkout@v4 | |
# name: Checkout main repo | |
# | |
# | |
# - name: Prime files | |
# run: | | |
# cp scratch/* data/ -Rf | |
# | |
# - name: List dirs | |
# run: find data | sed -e "s/[^-][^\/]*\// |/g" -e "s/|\([^ ]\)/|-\1/" | |
# | |
# - name: Generate commit message | |
# id: commit_msg | |
# run: echo "commit_msg=$(date +"%Y %b %d")" >> "$GITHUB_OUTPUT" | |
# | |
# - name: Commit data | |
# uses: stefanzweifel/git-auto-commit-action@v5 | |
# with: | |
# commit_message: ${{ steps.commit_msg.outputs.commit_msg }} | |
# branch: main | |
# repository: data | |
# add_options: '-A' |