chore: bump threeal/cmake-action from 2.0.0 to 2.1.0 (#87) #38
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 Documentation | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
jobs: | |
deploy-documentation: | |
runs-on: ubuntu-20.04 | |
permissions: | |
id-token: write | |
pages: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deploy-pages.outputs.page_url }} | |
concurrency: | |
group: pages | |
cancel-in-progress: true | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v4.2.1 | |
- name: Install documentation dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y doxygen | |
- name: Build documentation | |
run: doxygen | |
- name: Upload Documentation | |
uses: actions/upload-pages-artifact@v3.0.1 | |
with: | |
path: doc | |
- name: Deploy Pages | |
id: deploy-pages | |
uses: actions/deploy-pages@v4.0.5 |