Fix filehandle leaks in Sound module. #36
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: Deploy docs | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
repository_dispatch: | |
types: [run_build] | |
jobs: | |
deploy-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y doxygen | |
- name: Build Documentation | |
run: | | |
cd doc | |
doxygen | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
if: contains(github.ref,'refs/heads/master') | |
with: | |
branch: gh-pages | |
folder: doc/html | |
clean: false |