Merge pull request #223 from oxy-coach/master #169
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: phpDocumentor | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| tags: | |
| - 'v*' | |
| jobs: | |
| documentation: | |
| name: "phpDocumentor" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check GitHub Pages status | |
| if: ${{ github.ref != 'refs/heads/master' }} | |
| uses: crazy-max/ghaction-github-status@v2 | |
| with: | |
| pages_threshold: major_outage | |
| - name: Check out code into the workspace | |
| if: success() && ${{ github.ref != 'refs/heads/master' }} | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP 8.3 | |
| if: ${{ github.ref != 'refs/heads/master' }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.3" | |
| - name: Cache phpDocumentor | |
| id: cache-phpdocumentor | |
| uses: actions/cache@v4 | |
| with: | |
| path: phpDocumentor.phar | |
| key: phpdocumentor | |
| - name: Download latest phpDocumentor | |
| if: steps.cache-phpdocumentor.outputs.cache-hit != 'true' | |
| run: curl -O -L https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.4.3/phpDocumentor.phar | |
| - name: Generate documentation | |
| if: ${{ github.ref != 'refs/heads/master' }} | |
| run: php phpDocumentor.phar | |
| - name: Deploy documentation to GitHub Pages | |
| if: ${{ github.ref != 'refs/heads/master' }} | |
| uses: crazy-max/ghaction-github-pages@v2 | |
| with: | |
| target_branch: gh-pages | |
| build_dir: docs/build/html | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |