Merge pull request #18 from unb-mds/Database #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy MkDocs to GitHub Pages | |
on: | |
push: | |
branches: | |
- main # Alterar para a branch principal do repositório, se necessário | |
pull_request: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
pip install mkdocs | |
pip install mkdocs-material | |
- name: Build MkDocs site | |
run: | | |
mkdocs build --clean --site-dir site # Gera os arquivos do site na pasta "site" | |
env: | |
MKDOCS_CONFIG_FILE: mkdocs.yml # Certifica-se de usar o arquivo de configuração correto | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages # Publica na branch gh-pages | |
publish_dir: ./site # Define o diretório de saída como "site" | |