Skip to content

Commit

Permalink
feat: gh-actions deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ayamdobhal authored Nov 25, 2024
1 parent 347e6d9 commit 26ad9e3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deployment

on:
push:
branches: main
jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: SSH Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd gamying.online/
git pull
npm install
npm run build
pm2 restart gamying-online

0 comments on commit 26ad9e3

Please sign in to comment.