-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (35 loc) · 1.16 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Deploy React Vite App
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: debug
run: hostname -I && ping google.com -c 3
- name: SSH into VM and deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: 30724
protocol: tcp6
debug: true
# proxy_port: ${{ secrets.SSH_PORT }}
script: |
cd compose/
touch t.txt
#sudo su -c 'cd app/PPDB-Template-App && git stash && git remote set-url origin https://team6-ua-ppdb-bot:${{secrets.BOT_ACCESSTOKEN}}@github.com/PPDBTeam6-2023-2024/PPDB-Project.git && git pull origin main --rebase'
# run: |
# mkdir -p ~/.ssh
# echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa
# chmod 600 ~/.ssh/id_rsa
# ssh-keyscan -H $VPS_HOST >> ~/.ssh/known_hosts
# rsync -avz $VPS_USER@$VPS_HOST $VPS_PATH
# --delete dist/
# ssh $VPS_USER@$VPS_HOST -p $VPS_PORT "cd $VPS_PATH && touch t.txt"
# && npm install --production"
# && pm2 restart all"