forked from Research/WhisperCom
22 lines
616 B
YAML
22 lines
616 B
YAML
name: publish
|
|
on:
|
|
release:
|
|
types: [published]
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: set version
|
|
run: echo "PROJECT_NUMBER = `git describe --tags`" >> Doxyfile
|
|
- name: Generate Documentation
|
|
uses: mattnotmitt/doxygen-action@v1
|
|
- name: Publish generated content to GitHub Pages
|
|
uses: tsunematsu21/actions-publish-gh-pages@v1.0.1
|
|
with:
|
|
dir: docs/html
|
|
branch: gh-pages
|
|
token: ${{ secrets.ACCESS_TOKEN }} |