Add QR code generation for cadenaMC in sendQrPayment controller #14
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: Deploy to Digital Ocean | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy code to DigitalOcean Droplet | |
| uses: appleboy/ssh-action@master | |
| with: | |
| host: 164.90.245.198 | |
| username: root | |
| key: ${{ secrets.DEPLOY_SSH_KEY }} | |
| script: | | |
| cd /root/codi-api | |
| git pull origin main | |
| npm install | |
| pm2 restart codi-api | |
| echo "Deployment successful!" |