📈 Nueva interfaz y opción de visualizar apariciones #14
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] | |
jobs: | |
build: | |
name: 🐘 Desplegar | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🦅 Actualizar build por SSH | |
uses: appleboy/ssh-action@v0.1.7 | |
with: | |
host: ${{ secrets.DOMINIO_AZURE }} | |
username: ${{ secrets.USUARIO_AZURE }} | |
key: ${{ secrets.LLAVE_SSH }} | |
script: | | |
export NVM_DIR=~/.nvm | |
source ~/.nvm/nvm.sh | |
cd ${{ secrets.RUTA }} | |
git pull origin main | |
yarn install --frozen-lockfile | |
yarn build |