Skip to content

Update library.properties #23

Update library.properties

Update library.properties #23

Workflow file for this run

name: Doxygen
on:
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
doxygen:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# runs doxygen
- name: run doxygen
uses: mattnotmitt/doxygen-action@v1
with:
doxyfile-path: "./.github/workflows/DoxyFile"
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html