Skip to content

Update and rename README.md to CSDB.md #31

Update and rename README.md to CSDB.md

Update and rename README.md to CSDB.md #31

Workflow file for this run

name: Deploy MkDocs site to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install MkDocs and dependencies
run: |
pip install mkdocs mkdocs-material
- name: Deploy to GitHub Pages
run: |
mkdocs gh-deploy --force