Skip to content

Add Banxico credentials retrieval and enhance signature verification … #12

Add Banxico credentials retrieval and enhance signature verification …

Add Banxico credentials retrieval and enhance signature verification … #12

Workflow file for this run

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!"