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 & Deploy MkDocs site | |
on: | |
pull_request: | |
branches: | |
- main | |
types: [ labeled ] | |
jobs: | |
deploy-mkdocs: | |
name: Deploy to Github Pages | |
if: ${{ github.event.label.name == 'publish' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Deploy MkDocs | |
uses: mhausenblas/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REQUIREMENTS: requirements/requirements.dev.txt |