Skip to content

Update phpdoc

Update phpdoc #3

Workflow file for this run

name: Documentation
on:
push:
branches:
- "*.*.x"
concurrency:
group: documentation
cancel-in-progress: true
jobs:
phpdoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run phpdoc
run: |
docker run --rm -v $(pwd):/data phpdoc/phpdoc:3 -d ./src -t ./docs
- name: git commit
run: |
git config user.name "GitHub Actions"
git config user.email ""
git add docs/
git commit -m "Update phpdoc" || echo "No changes to commit"
git push