Supress avcodec_close() deprecation warning #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
doxygen: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: install dependencies | |
run: sudo apt-get install doxygen graphviz | |
- name: generate docs | |
run: doxygen | |
- name: Deploy docs to gh-pages | |
uses: s0/git-publish-subdir-action@master | |
env: | |
REPO: self | |
BRANCH: gh-pages | |
FOLDER: doc/html | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |