Files
paad/.github/workflows/main.yml
Alejandro Rosales 4e1c24c7e2
All checks were successful
Deploy Pruebas / deploy (push) Successful in 14s
Actualizar .github/workflows/main.yml
2024-08-15 19:46:31 +00:00

26 lines
552 B
YAML

name: Deploy Pruebas
on:
push:
branches:
- master
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/master