diff options
| author | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-26 10:16:45 +0000 |
|---|---|---|
| committer | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-26 10:16:45 +0000 |
| commit | acdcaab33dc30b229a3d511d110622de889a4993 (patch) | |
| tree | fa24f034ecb789565a5059ea219f5eca84a2768b | |
| parent | ea6184dd08b54126cfc33edbbe580bae114e49c3 (diff) | |
chore: configure docs deployment to clean root and deploy to docs/html
| -rw-r--r-- | .github/workflows/docs.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d3bdcaa..178d43c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -20,10 +20,15 @@ jobs: - name: Generate Documentation run: doxygen Doxyfile + - name: Organize Documentation + run: | + mkdir public + mv docs public/ + - name: Deploy to z-libs/Zen-C-Docs uses: peaceiris/actions-gh-pages@v3 with: deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} external_repository: z-libs/Zen-C-Docs publish_branch: main - publish_dir: ./docs/html + publish_dir: ./public |
