Merge pull request #256 from fflorent/api-update-columns #108
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: Publish Live | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish-live: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Fetch origin/gh-pages | |
run: git fetch origin gh-pages | |
- name: Publish live | |
run: mkdocs gh-deploy |