Mejora la redacción de la pregunta consejos para aprender Python #315
Workflow file for this run
This file contains hidden or 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: CI | |
| on: [push] | |
| jobs: | |
| deploy: | |
| if: github.ref == 'refs/heads/main' | |
| runs-on: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Push to server | |
| uses: appleboy/ssh-action@master | |
| with: | |
| host: ${{ secrets.SSH_HOST }} | |
| username: ${{ secrets.SSH_USER }} | |
| password: ${{ secrets.SSH_PASS }} | |
| port: ${{ secrets.SSH_PORT }} | |
| script: sh deploy.sh |