Skip to content

Bump version.

Bump version. #483

Workflow file for this run

name: Build and Deploy to Netlify
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install Module
run: pip install -e .
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.docs.txt
pip install livereload
- name: Build Docs
run: mkdocs build
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: './site'
production-branch: master
github-token: ${{ secrets.PERSONAL_TOKEN }}
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}