mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
39 lines
984 B
Plaintext
39 lines
984 B
Plaintext
# See syntax file on https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
|
|
name: Doxygen
|
|
on:
|
|
schedule:
|
|
- cron: "0 15 * * *"
|
|
workflow_dispatch:
|
|
branches:
|
|
- develop
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Build
|
|
uses: DenverCoder1/doxygen-github-pages-action@v1.2.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: gh-pages
|
|
folder: dev/build/html
|
|
config_file: dev/build/doxygen/dolibarr-doxygen.doxyfile
|
|
|
|
# - name: Deploy
|
|
# uses: JamesIves/github-pages-deploy-action@v4
|
|
# with:
|
|
# branch: gh-pages
|
|
# folder: dev/build/html # The folder the action should deploy.
|
|
# target-folder: docs/html2
|
|
|
|
#jobs:
|
|
# doxygen:
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - name: 'Doxygen'
|
|
# uses: mattnotmitt/doxygen-action@1.9.5
|
|
# with:
|
|
# doxyfile-path: build/doxygen
|