Skip to content

Merge pull request #610 from CommonGateway/feature/KTB-8/fix-events-w… #2267

Merge pull request #610 from CommonGateway/feature/KTB-8/fix-events-w…

Merge pull request #610 from CommonGateway/feature/KTB-8/fix-events-w… #2267

Workflow file for this run

name: Docs
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
php_version: "7.4"
php_extensions: redis exif mongodb intl pdo_pgsql zip mysqli pdo_mysql pcntl gd gmp
version: 2.x
command: require clean/phpdoc-md
- name: Build the docs
run: vendor/bin/phpdoc-md
- name: Git commit
run: |
git config user.name "GitHub Actions"
git config user.email ""
git add docs/classes
git commit -m "Update phpdoc" || echo "No changes to commit"
git pull origin $(git rev-parse --abbrev-ref HEAD) --rebase --autostash
git push