mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-22 16:27:39 +01:00
28 lines
481 B
YAML
28 lines
481 B
YAML
name: sync
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: composer install --prefer-dist --no-progress
|
|
|
|
- name: Run docgen
|
|
run: php bin/docgen
|
|
|
|
- name: Add & Commit
|
|
uses: EndBug/add-and-commit@v9
|
|
with:
|
|
add: 'docs'
|
|
message: '[automatic] Update docs with bin/docgen'
|
|
|