Skip to content

added doc (urbantep-visat) to homepage #192

added doc (urbantep-visat) to homepage

added doc (urbantep-visat) to homepage #192

Workflow file for this run

name: deploy-docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.x" # Set this to the version of Python you're using
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material
- name: Build the MkDocs site
run: mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GREENGAGE_PROJECT_GITHUB_TOKEN }}
publish_dir: ./site