docs: added a timers page, added a note in setting_status for timers … #1287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs Build (dpp.dev) | |
on: | |
push: | |
branches: | |
- 'dev' | |
files: | |
- '**Doxyfile' | |
- '**docpages/**' | |
- '**/*.h' | |
- '**/documentation.yml' | |
permissions: | |
contents: read | |
jobs: | |
docs: | |
permissions: | |
contents: write # Needs to be able to write to the repo. | |
name: Build Documentation | |
runs-on: ubuntu-20.04 | |
concurrency: | |
group: docs-deployment | |
cancel-in-progress: true | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: Setup PHP | |
uses: shivammathur/setup-php@6d7209f44a25a59e904b1ee9f3b0c33ab2cd888d # v2 | |
with: | |
php-version: '8.0' | |
- name: Checkout D++ | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
with: | |
submodules: recursive | |
- name: Generate Docs | |
run: cd docpages && php makedocs-gh.php | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |