Restore original docs and workflows to avoid conflicts while merging

Этот коммит содержится в:
Valentin V. Bartenev
2026-06-06 20:50:05 +03:00
родитель ae60d86207
Коммит 7635634f87
20 изменённых файлов: 4454 добавлений и 0 удалений
+36
Просмотреть файл
@@ -0,0 +1,36 @@
name: Build and deploy Docs site to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
jobs:
github-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
ruby-version: 3.x
- name: Build
run: |
pip install mkdocs-material
mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
cname: docs.meshcore.io
publish_dir: ./site
publish_branch: 'gh-pages'