Add new "Sedes" section and update community links in documentation #10
Workflow file for this run
This file contains hidden or 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: CI/CD Pipeline | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
jobs: | ||
build-and-validate: | ||
name: Build and Validate | ||
runs-on: ubuntu-latest | ||
steps: | ||
# ... todos los pasos de validación y build ... | ||
deploy: | ||
name: Deploy to GitHub Pages | ||
if: github.ref == 'refs/heads/main' | ||
needs: build-and-validate | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
steps: | ||
# ... pasos de deploy ... |