Skip to content

Commit

Permalink
Add deploy docs release action.
Browse files Browse the repository at this point in the history
  • Loading branch information
h2zero committed Oct 30, 2022
1 parent f63a6dd commit 63ff098
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on:
release:
types: [published]
workflow_dispatch:

jobs:
build_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Doxygen Action
uses: mattnotmitt/[email protected]
with:
working-directory: 'docs/'

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

0 comments on commit 63ff098

Please sign in to comment.