trying minor indentation fix on actions workflow #37
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: Doxygen Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: [self-hosted, Linux] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Config | |
run: | | |
sudo apt-get install doxygen -y | |
mkdir -p build | |
cd build | |
cmake -DWMTK_BUILD_DOCS=ON .. | |
make wmtk_doc_doxygen | |
touch docs_doxygen/html/.nojekyll | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: build/docs_doxygen/html/ # The folder the action should deploy. |