Skip to content

feat: Add apis for user info #10

feat: Add apis for user info

feat: Add apis for user info #10

Workflow file for this run

name: auto-deploy
on:
push:
branches:
- main
jobs:
SSH:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run scripts in server
uses: appleboy/ssh-action@master
with:
key: ${{ secrets.SSH_KEY }}
host: ${{ secrets.HOST }}
username: ${{ secrets.USER }}
script: |
cd linku-backend
git reset --hard
git fetch
git pull
npm install -f
npm run restart