-
Notifications
You must be signed in to change notification settings - Fork 31
53 lines (44 loc) · 1.56 KB
/
build.wiki.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Update Wiki
on:
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.3"
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.3-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-8.3-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://[email protected]/horstoeko/zugferd.wiki.git wiki
mv make/*.md wiki
cd wiki
git config user.name "HorstOeko"
git config user.email "[email protected]"
git add -A
git commit -m "Automatische Aktualisierung des Wikis"
git push