Skip to content

Update mkdocs.yml

Update mkdocs.yml #10

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Substitua "main" pelo nome do seu branch principal
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 dependencies
run: |
pip install mkdocs
- name: Build site
run: |
cd docs/
mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
# Upload entire repository
github_token: ${{ secrets.REPO_TOKEN }}
publish_dir: './docs/site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4