cambios no registrados en requirements.txt de github #29
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
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
run_pull: | |
name: run pull | |
runs-on: ubuntu-latest | |
steps: | |
- name: Execiting remote ssh commands using ssh key | |
uses: appleboy/ssh-action@v1.0.3 | |
with: | |
host: ${{secrets.SSH_HOST}} | |
username: ${{secrets.SSH_USER}} | |
key: ${{secrets.SSH_PRIVATE_KEY}} | |
port: ${{secrets.SSH_PORT}} | |
script: | | |
cd ${{secrets.WORK_DIR}} | |
git switch main | |
git pull | |
cd /home/usuario/rhea/rhea-web/ | |
ng build --configuration production --base-href "" | |
sudo cp -r /home/usuario/rhea/rhea-web/dist/ /var/www/ | |
sudo systemctl restart server | |
sudo systemctl restart nginx | |
exit | |