New Version 4.2.001 #49
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: Deploy GitHub Pages | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build-docs: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Doxygen | |
run: sudo apt install -y doxygen | |
- name: Install Graphviz | |
run: sudo apt install -y graphviz | |
- name: Install Doxygen Awesome | |
working-directory: ${{ github.workspace }}/docs | |
run: git clone https://github.com/jothepro/doxygen-awesome-css.git -b v2.2.1 | |
- name: Run Doxygen | |
working-directory: ${{ github.workspace }}/docs | |
run: doxygen | |
- name: Copy Images | |
run: cp -r ${{ github.workspace }}/docs/images ${{ github.workspace }}/docs/html | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ${{ github.workspace }}/docs/html | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
needs: build-docs | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Setup GitHub Pages | |
uses: actions/configure-pages@v5 | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |