Skip to content

Commit

Permalink
Attempt 3 at doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
brofield committed Dec 9, 2024
1 parent 9af5f94 commit 192581a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test SimpleIni
name: Build and Test

on:
push:
Expand Down
24 changes: 10 additions & 14 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
name: Generate Doxygen documentation
name: Build Doxygen Docs

on:
push:
branches:
- main
workflow_run:
workflows: ["Build and Test"]
types:
- completed

jobs:
build:
deploy:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest

steps:
- name: Checkout repository
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Doxygen
run: sudo apt-get install doxygen graphviz

- name: Generate Doxygen documentation
- name: Generate Doxygen Documentation
run: doxygen Doxyfile

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/html
publish_dir: ./docs/html

0 comments on commit 192581a

Please sign in to comment.