-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (49 loc) · 1.54 KB
/
cd.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
name: Continuous Delivery
on:
workflow_dispatch:
push:
branches:
- main
jobs:
Continuous-Delivery:
runs-on: ubuntu-latest
steps:
- name: Configure SSH
env:
SSH_HOST: ${{ vars.DEPLOYMENT_HOST }}
SSH_USER: ${{ vars.DEPLOYMENT_USER }}
SSH_KEY: ${{ secrets.DEPLOYMENT_KEY }}
run: |
mkdir -p ~/.ssh/
cat >>~/.ssh/config <<END
Host staging
HostName $SSH_HOST
User $SSH_USER
IdentityFile ~/.ssh/staging.key
StrictHostKeyChecking no
END
echo "$SSH_KEY" > ~/.ssh/staging.key
chmod 600 ~/.ssh/staging.key
- name: Check out
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Remove node_modules and install production dependencies
run: |
rm -rf node_modules
yarn install --frozen-lockfile --production
- name: Stop service, Copy node_modules and dist folders to target host, Start service
env:
SSH_PATH: ${{ vars.DEPLOYMENT_BACKEND_PATH }}
run: |
ssh staging "$SSH_PATH/stop-service.sh"
rsync -azh --delete ./node_modules/ staging:$SSH_PATH/node_modules/
rsync -azh --delete ./dist/ staging:$SSH_PATH/dist/
ssh staging "$SSH_PATH/start-service.sh"