document #10
Workflow file for this run
This file contains hidden or 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: document | |
| on: release | |
| jobs: | |
| phpunit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/cache@v2 | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: ${{ runner.os }}-composer- | |
| - name: composer | |
| run: composer update | |
| - name: document | |
| run: | | |
| docker run --rm -v $(pwd):/data phpdoc/phpdoc:3 --directory=src --directory=vendor/sweetrdf/rdf-interface/src --directory=vendor/sweetrdf/rdf-helpers/src/ --target=docs | |
| git fetch && git checkout docs -- | |
| for i in `ls -1 | grep -v ^docs$`; do rm -fR $i ; done | |
| cp -R docs/* . | |
| git config user.email "workflow@github.actions" | |
| git config user.name "Github Actions Workflow" | |
| git add * || true | |
| git commit -a -m 'Automatic documentation generation' && git push origin docs || true |