Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Update README.md

Update README.md #6

Workflow file for this run

name: Create Tag
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Klemensas/action-autotag@stable
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
phpdoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run phpdoc
run: |
docker run --rm -v $(pwd):/data phpdoc/phpdoc:3 -d ./lib -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