bump version #47
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: github pages | |
on: | |
push: | |
paths: | |
- BivariateRenderer/metadata.txt | |
- .github/workflows/mkdocs_build_deploy.yaml | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.8' | |
architecture: 'x64' | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install mkdocs | |
python3 -m pip install MarkdownHighlight | |
python3 -m pip install https://codeload.github.com/mkdocs/mkdocs-bootstrap/zip/master | |
- name: Build | |
run: | | |
mkdocs build --config-file ./website/mkdocs.yml | |
touch website/docs/.nojekyll | |
- name: Deploy | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./website/docs | |
publish_branch: gh-pages | |