Merge pull request #78 from linchpin/release-please--branches--main--… #10
This file contains 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
on: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/wiki.yml | |
- '**.php' | |
name: Update Wiki | |
jobs: | |
update_wiki: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Create Wiki Markdown | |
uses: php-actions/composer@v6 | |
- name: Generate API docs | |
run: | | |
wget https://phpdoc.org/phpDocumentor.phar | |
php phpDocumentor.phar --directory=./application/Controller/Integrations --target=./wiki --template='vendor/saggre/phpdocumentor-markdown/themes/markdown' | |
- name: Push Wiki Changes | |
uses: Andrew-Chen-Wang/github-wiki-action@v4 | |
env: | |
# Make sure you have that / at the end. We use rsync | |
# WIKI_DIR's default is wiki/ | |
WIKI_DIR: wiki/ | |
GH_TOKEN: ${{ secrets.GH_WIKI_UPDATE_TOKEN }} | |
GH_MAIL: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
GH_NAME: ${{ github.repository_owner }} |