Update docs generation with conan2 #153
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: Game Documentation | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| pages: write | |
| deployments: write | |
| id-token: write | |
| env: | |
| CONAN_REVISIONS_ENABLED: 1 | |
| jobs: | |
| docs: | |
| runs-on: windows-latest | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Check Installed Software | |
| run: where git & where python & where pip | |
| shell: cmd | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: 'recursive' | |
| - name: Install Conan | |
| run: pip install conan>=2.0 | |
| - name: Set Conan Home | |
| run: echo "CONAN_HOME=${{ github.workspace }}\packages" | Out-File -Append $env:GITHUB_ENV | |
| shell: powershell | |
| - name: Install Doxygen | |
| run: conan install --requires="doxygen/1.16.1" --deployer=full_deploy --deployer-folder="${{ github.workspace }}\packages" -r conancenter | |
| - name: Find Doxygen Executable Path | |
| run: | | |
| $doxygenPath = Get-ChildItem -Path "${{ github.workspace }}\packages" -Recurse -Filter doxygen.exe | Select-Object -First 1 -ExpandProperty FullName | |
| echo "DOXYGEN_EXE_PATH=$doxygenPath" | Out-File -Append $env:GITHUB_ENV | |
| shell: powershell | |
| - name: Run Doxygen | |
| run: ${{ env.DOXYGEN_EXE_PATH }} ${{ github.workspace }}\Doxygen\Doxyfile | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v2 | |
| - name: Upload Docs | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: Documentation\html | |
| - name: Deploy To GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |