chore(deps): bump actions/attest-build-provenance from 1.4.4 to 2.1.0 #43
Workflow file for this run
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: Doxygen GitHub Pages Deploy Action | |
on: | |
pull_request: | |
types: [closed] | |
branches: [master, main] | |
repository_dispatch: | |
types: | |
- update_logo_event | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Doxygen | |
run: | | |
sudo apt-get update | |
sudo apt-get install doxygen -y | |
- name: Install theme | |
run: | | |
git clone https://github.com/jothepro/doxygen-awesome-css.git | |
cd doxygen-awesome-css | |
git checkout v2.3.4 | |
cd .. | |
- name: Generate Doxygen Documentation | |
run: doxygen Doxyfile.cfg | |
- name: Create .nojekyll file | |
run: touch docs/html/.nojekyll | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: "${{ secrets.GITHUB_TOKEN }}" | |
publish_dir: ./docs/html |