Skip to content

Commit

Permalink
Add separate docs-sync.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmedv committed Oct 14, 2024
1 parent 7cda83f commit 090dd3a
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 40 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/docs-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: doc-sync

on:
push:
branches: [ master ]

permissions:
contents: write

jobs:
fix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'

- 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 }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress

- name: Run docgen
run: php bin/docgen

- name: Add & Commit
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
add: 'docs'
message: '[automatic] Update docs with bin/docgen'
40 changes: 0 additions & 40 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ on:
pull_request:
branches: [ master ]

permissions:
contents: write

jobs:
docgen:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -47,40 +44,3 @@ jobs:
echo $status;
exit 1;
}
fix:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'

- 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 }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress

- name: Run docgen
run: php bin/docgen

- name: Add & Commit
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
add: 'docs'
message: '[automatic] Update docs with bin/docgen'

0 comments on commit 090dd3a

Please sign in to comment.