updated changelog for MVVS-2.7.0 #64
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: MkDocs Deploy | |
| on: | |
| push: | |
| branches: [ master ] | |
| paths: | |
| - 'docs/**' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.x | |
| - run: pip install -r requirements-dev.txt | |
| - name: Deploy documentation to GitHub Pages | |
| run: | | |
| git config user.name 'github-actions' | |
| git config user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
| mkdocs gh-deploy --force |