change mainpage to REAMDE.md #3
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: IPPL documentation | |
run-name: ${{ github.actor }} is hosting the IPPL Documentation | |
on: | |
push: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Doxygen Action | |
uses: mattnotmitt/doxygen-action@v1.9.5 | |
with: | |
# Path to Doxyfile | |
doxyfile-path: "doc/Doxyfile" | |
# Working directory | |
working-directory: "." # default is . | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: doc/html |