Added Surveyor240, Omniscan500, and Sounder S500 packet definitions #26
Workflow file for this run
This file contains hidden or 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: Publish docs via GitHub Pages | |
| on: [pull_request, push, workflow_dispatch] | |
| jobs: | |
| build: | |
| name: Deploy docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout main | |
| uses: actions/checkout@v2 | |
| - name: Generate docs | |
| run: | | |
| pip install "jinja2>=2.10" mkdocs-material | |
| sudo gem install html-proofer | |
| tools/populate-docs.sh | |
| - name: Deploy docs | |
| if: github.ref == 'refs/heads/master' | |
| uses: mhausenblas/mkdocs-deploy-gh-pages@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |