Skip to content

Commit

Permalink
[INFR] Update wiki automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
HorstOeko committed Dec 21, 2024
1 parent 4a61749 commit 022eb4f
Show file tree
Hide file tree
Showing 3 changed files with 775 additions and 1 deletion.
62 changes: 62 additions & 0 deletions .github/workflows/build.wiki.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Update Wiki

on:
workflow_run:
workflows:
- Release
types:
- completed
workflow_dispatch:

env:
GH_PAT: ${{ secrets.UPDATEWIKITOKEN }}

jobs:
updatewiki:
permissions: write-all
runs-on: "ubuntu-24.04"

steps:
- name: Checkout Sources
uses: actions/checkout@v4

- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, bcmath, intl, gd, exif, iconv, imagick, json, xdebug
coverage: xdebug

- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-8.4-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-8.4-composer-
- name: Install composer dependencies
run: |
composer config -g github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
composer install
- name: Update Wiki
continue-on-error: true
run: |
php -f make/genmethoddocs.php
git clone https://$GH_PAT@github.com/horstoeko/zugferdublbridge.wiki.git
mv make/*.md wiki
cd wiki
git config user.name "HorstOeko"
git config user.email "horstoeko@erling.com.de"
if [ -n "$(git status --porcelain)" ]; then
git add -A
git commit -m "Automatische Aktualisierung des Wikis"
git push
else
echo "No changes found. Skipping."
fi
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9",
"sebastian/phpcpd": "^6",
"squizlabs/php_codesniffer": "^3"
"squizlabs/php_codesniffer": "^3",
"phpdocumentor/reflection-docblock": "^5.3",
"horstoeko/stringmanagement": "^1",
"nette/php-generator": "*"
},
"scripts": {
"tests": "./vendor/bin/phpunit ./tests/",
Expand Down
Loading

0 comments on commit 022eb4f

Please sign in to comment.