- Notifications
You must be signed in to change notification settings - Fork16
Github Pages#46
This file contains hidden or 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:Github Pages | |
| on: | |
| schedule: | |
| # Triggers at the end of the day on the 1st of every month | |
| -cron:'0 0 1 * *' | |
| jobs: | |
| deploy: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v3 | |
| -uses:mattnotmitt/doxygen-action@v1 | |
| with: | |
| doxyfile-path:docs/Doxygen/Doxyfile | |
| -name:Deploy | |
| uses:peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token:${{ secrets.GITHUB_TOKEN }} | |
| publish_dir:docs | |
| destination_dir:docs | |
| force_orphan:true |