-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (54 loc) · 1.87 KB
/
deploy-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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Deploy Main Branch to Server
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: main
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Build the app
run: yarn build --mode production
- name: Copy files via SSH
env:
SSH_HOST: ${{ secrets.SSH_HOST }}
SSH_USERNAME: ${{ secrets.SSH_USERNAME }}
SSH_PASSWORD: ${{ secrets.SSH_PASSWORD }}
run: |
sudo apt-get update
sudo apt-get install -y sshpass
sshpass -p "$SSH_PASSWORD" ssh -o StrictHostKeyChecking=no $SSH_USERNAME@$SSH_HOST "
if [ ! -d /home/$SSH_USERNAME/main ]; then
git clone -b main https://github.com/citizenweb3/validatorinfo.git /home/$SSH_USERNAME/main
else
cd /home/$SSH_USERNAME/main && git pull origin main
fi
"
- name: Deploy application
env:
SSH_HOST: ${{ secrets.SSH_HOST }}
SSH_USERNAME: ${{ secrets.SSH_USERNAME }}
SSH_PASSWORD: ${{ secrets.SSH_PASSWORD }}
run: |
sshpass -p "$SSH_PASSWORD" ssh -o StrictHostKeyChecking=no $SSH_USERNAME@$SSH_HOST "
cd /home/$SSH_USERNAME/main &&
# Строим новый Docker образ
docker build -t frontend-main . &&
# Stop old container
if [ \$(docker ps -q -f name=frontend-main) ]; then
docker stop frontend-main
docker rm frontend-main
fi &&
# Start new container
docker run -d --name frontend-main -p 81:80 frontend-main
"