Skip to content

Merge branch 'pages' of https://github.com/ResidenciaTICBrisa/T2G3-Si… #96

Merge branch 'pages' of https://github.com/ResidenciaTICBrisa/T2G3-Si…

Merge branch 'pages' of https://github.com/ResidenciaTICBrisa/T2G3-Si… #96

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- pages
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v3 # Atualizado para v3
with:
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
path: .aux
- run: pip install mkdocs-bootswatch
- run: pip install mkdocs-material mkdocs-with-pdf
- run: mkdocs build
- run: mkdocs gh-deploy --force