Update display.hpp #30
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: Docs | |
| # on: | |
| # push: | |
| # branches: | |
| # - main | |
| # jobs: | |
| # Docs: | |
| # runs-on: ubuntu-latest | |
| # permissions: | |
| # contents: write | |
| # steps: | |
| # - uses: actions/checkout@v3 | |
| # - name: Cancel Previous Runs | |
| # uses: styfle/cancel-workflow-action@0.6.0 | |
| # with: | |
| # access_token: ${{ secrets.DOCS_TOKEN }} | |
| # - name: Add Submodules | |
| # run: git submodule update --init --recursive | |
| # - name: Install Dependencies | |
| # run: sudo apt install doxygen | |
| # - name: Build Docs | |
| # working-directory: . | |
| # run: | | |
| # cd scripts | |
| # ./doxygen.sh | |
| # - name: Deploy | |
| # uses: peaceiris/actions-gh-pages@v3 | |
| # with: | |
| # github_token: ${{ secrets.DOCS_TOKEN }} | |
| # publish_dir: './website' |