From: Stephen Seo Date: Thu, 9 Sep 2021 09:10:07 +0000 (+0900) Subject: Add gh-pages workflow for Doxygen documentation X-Git-Tag: 1.0~55 X-Git-Url: https://git.seodisparate.com/stephenseo/img/favicon.ico?a=commitdiff_plain;h=6e39e6dc1631d8682e76d9e50b4e612940f366a6;p=UDPConnection Add gh-pages workflow for Doxygen documentation --- diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml new file mode 100644 index 0000000..81cf629 --- /dev/null +++ b/.github/workflows/gh-pages.yml @@ -0,0 +1,26 @@ +name: GitHub Pages Generated Doxygen Docs + +on: + push: + branches: + - master + +jobs: + build-deploy-doxygen-docs: + runs-on: ubuntu-latest + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 1 + + - name: Generate Doxygen Documentation + uses: mattnotmitt/doxygen-action@v1 + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + if: ${{ github.ref == 'refs/heads/master' }} + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./doxygen_out/html