mirror of
https://github.com/m5stack/M5UnitUnified.git
synced 2026-05-20 11:24:51 -07:00
32 lines
691 B
YAML
32 lines
691 B
YAML
name: Deploy Doxygen document on GitHub Pages
|
|
on: [release, workflow_dispatch]
|
|
# branches:
|
|
# - main
|
|
# - master
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 12
|
|
strategy:
|
|
max-parallel: 20
|
|
matrix:
|
|
include:
|
|
- shard: 1
|
|
steps:
|
|
- name: Make document
|
|
uses: m5stack/M5Utility/.github/actions/doxygen@develop
|
|
with:
|
|
doxygen_version: 1.11.0
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: gh-pages
|
|
folder: docs/html
|
|
config_file: docs/Doxyfile
|