Files
paad/.github/workflows/main.yml
Alejandro Rosales 08fd1d546f Update main.yml
origin/Pruebas
2024-03-06 14:09:40 -06:00

27 lines
555 B
YAML

name: Deploy Pruebas
on:
push:
branches:
- Pruebas
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: pruebasPAAD
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Deploy to Server
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_IP }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd /usr/share/nginx/html/paad/
git fetch --all
git reset --hard origin/Pruebas