Skip to content

🧹 Removing github release from CICD (#24) #22

🧹 Removing github release from CICD (#24)

🧹 Removing github release from CICD (#24) #22

Workflow file for this run

name: Build Docs
on:
push:
branches:
- main
jobs:
build:
name: Deploy docs to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
- name: Build and Deploy Docs
run: |
pip install --upgrade pip
pip install -r requirements-dev.lock
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git config pull.rebase false
python -m mkdocs gh-deploy