Merge pull request #386 from Adam-it/not-actively-maintained-remark #26
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 GitHub Pages website | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
# Only when run from the main repo | |
if: github.repository == 'pnp/generator-teams' | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- run: | | |
pip install mkdocs-material | |
- name: Deploy | |
working-directory: ./docs | |
run: mkdocs gh-deploy --force |