Skip to content

Commit

Permalink
Action to build doc=xygen docs
Browse files Browse the repository at this point in the history
  • Loading branch information
FigBug committed May 16, 2020
1 parent bcb6da4 commit e7e388e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/update_docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Update Docs
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Build Docs
run: |
sudo apt-get install doxygen
sudo apt-get install graphviz
sudo apt-get install rsync
cd doxygen
make
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: doxygen/doc

0 comments on commit e7e388e

Please sign in to comment.