Skip to content

Commit

Permalink
Update docs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
antonmedv committed Oct 13, 2024
1 parent 20061f8 commit 8e0c90e
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 36 deletions.
36 changes: 33 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
pull_request:
branches: [ master ]

permissions:
contents: write

jobs:
docgen:
runs-on: ubuntu-latest
Expand All @@ -17,9 +20,6 @@ jobs:
with:
php-version: '8.2'

- name: Validate composer.json and composer.lock
run: composer validate

- name: Get Composer Cache Directory
id: composer-cache
run: |
Expand Down Expand Up @@ -47,3 +47,33 @@ 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
33 changes: 0 additions & 33 deletions .github/workflows/sync.yml

This file was deleted.

0 comments on commit 8e0c90e

Please sign in to comment.