Skip to content

Update ghpages.yml

Update ghpages.yml #26

Workflow file for this run

name: ghpages
on:
push:
branches:
- main
# permissions:
# actions: write
# contents: write
# deployments: write
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.10.9
- uses: actions/cache@v2
with:
key: ${{github.ref}}
path: .cache
- name: run requirements file
run: pip install mkdocs-material
- name: Deploy docs
run: mkdocs gh-deploy --force
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}