Skip to content

Commit

Permalink
Merge pull request #439 from jupp0r/github-actions-for-doxygen
Browse files Browse the repository at this point in the history
ci: Use GitHub Actions to deploy documentation
  • Loading branch information
gjasny committed Dec 27, 2020
2 parents 2169948 + b57ad1d commit 07a30cb
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/doxygen.yml
@@ -0,0 +1,30 @@
name: Doxygen
on:
push:
branches:
- master

jobs:
build:
name: Code Coverage
runs-on: ubuntu-20.04
steps:
- name: Checkout source
uses: actions/checkout@v2

- name: Install doxygen
run: |
sudo apt-get remove -y --purge man-db # avoid time-consuming trigger
sudo apt-get update
sudo apt-get install -y doxygen graphviz
- name: Generate doxygen
run: doxygen
working-directory: "${{ github.workspace }}/doc"

- name: Deploy documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
force_orphan: true
publish_dir: ./doc/html
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

0 comments on commit 07a30cb

Please sign in to comment.