delete unused file #25
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: documentation | |
on: | |
push: | |
branches: | |
- "*" | |
- "!gh-pages" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: sudo apt install doxygen | |
- name: Generate documentation | |
run: | | |
mkdir build | |
doxygen Doxyfile | |
- name: Deploy documentation | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
target-folder: ${{ github.ref_name }}/documentation | |
folder: build/documentation/html/ | |
clean: true |