feat(influencer detail): added stats total gallery and news #49
This file contains 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 Production | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Deployment via SSH | |
runs-on: ubuntu-latest | |
steps: | |
- name: SSH Comands to Server | |
uses: fifsky/ssh-action@master | |
with: | |
host: ${{ secrets.PROD_SSH_HOST }} | |
user: ${{ secrets.PROD_SSH_USER }} | |
key: ${{ secrets.PROD_SSH_KEY}} | |
command: cd /home/webdev/Api/follooow-be && git pull origin main && go build main.go && pm2 restart follooow-be |