docs: add static website and docs

This commit is contained in:
Federico Jaramillo Martinez
2026-05-15 23:35:48 +02:00
parent aab9ffb8e2
commit c66d834c88
11 changed files with 1421 additions and 1 deletions
+41
View File
@@ -0,0 +1,41 @@
name: Deploy static site
on:
push:
branches: [main]
paths:
- docs/**
- .github/workflows/pages.yml
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: github-pages
cancel-in-progress: false
jobs:
deploy:
name: Deploy GitHub Pages
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Configure Pages
uses: actions/configure-pages@v6
- name: Upload static site
uses: actions/upload-pages-artifact@v4
with:
path: docs
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4