Merge pull request #90 from enflujo/interaccion-mapa #83
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: Despliegue | |
on: | |
push: | |
branches: ['main'] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: 'pages' | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
name: 🐘 Desplegar | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🐯 Obtener código del repositorio | |
uses: actions/checkout@v3 | |
- name: 🐝 Usar Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- name: 🦒 Instalar dependencias y hacer build | |
run: | | |
yarn install --frozen-lockfile | |
yarn build | |
- name: 🐝 Configurar página de GitHub | |
uses: actions/configure-pages@v3 | |
- name: 🦅 Enviar archivos | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: './publico' | |
- name: 🐘 Desplegar a Github Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |