feat(Buscador): agregar flexsearch #22
Workflow file for this run
This file contains 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: Construir y publicar el sitio con Nikola | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- conf.py | |
- pages/** | |
- themes/** | |
- plugins/** | |
- images/** | |
- files/** | |
pull_request: | |
branches: [ master ] | |
paths: | |
- conf.py | |
- pages/** | |
- themes/** | |
- plugins/** | |
- images/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Buildear con Nikola y publicar a GH Pages | |
uses: getnikola/nikola-action@v8 | |
with: | |
dry_run: ${{ github.event_name == 'pull_request' }} # Solo build, no deploy |