Skip to content

Update og:image

Update og:image #4

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Escucha cambios en la rama principal
jobs:
build-and-deploy:
runs-on: ubuntu-latest # Elige un entorno Ubuntu
steps:
# Paso 1: Clonar el repositorio
- name: Checkout Code
uses: actions/checkout@v3
# Paso 2: Configurar Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12 # Elige la versión de Python
# Paso 3: Instalar dependencias de Python
- name: Install Dependencies
run: |
pip install -r src/requirements.txt
# Paso 4: Generar el sitio
- name: Generate Site
run: |
python src/sitebuilder.py
cp CNAME dist/
# Paso 5: Desplegar a GitHub Pages
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist # Carpeta donde está el sitio generado