Skip to content

📸 Added new screenshots for building rorsever #64

📸 Added new screenshots for building rorsever

📸 Added new screenshots for building rorsever #64

Workflow file for this run

name: Build docs
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
cache: 'pip'
- name: Install mk-docs
run: pip install -r requirements.txt
- name: Build
run: mkdocs build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
force_orphan: true