Add documentation upload step to workflow
Add step to upload generated PHP documentation as an artifact.
This commit is contained in:
parent
12077bf69f
commit
be51f2ef71
1 changed files with 6 additions and 0 deletions
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
|
@ -29,3 +29,9 @@ jobs:
|
|||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./docs/api
|
||||
|
||||
- name: Upload Documentation
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: php-doc-api
|
||||
path: ./docs/api # Le dossier où phpDoc a généré l'HTML
|
||||
|
|
|
|||
Loading…
Reference in a new issue