Skip to content

docs: RNFs

docs: RNFs #56

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- docs/unidade-3
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Configure Git Credentials
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Deploy with mkdocs
run: mkdocs gh-deploy --force