-
Notifications
You must be signed in to change notification settings - Fork 0
98 lines (92 loc) · 3.03 KB
/
deploy.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Deployment
on:
workflow_dispatch:
push:
branches:
- main
jobs:
deploy-staging:
name: Deploy(Staging)
runs-on: ubuntu-latest
environment: DuDoong-Staging
steps:
- name: checkout
uses: actions/checkout@master
- name: create env file
run: |
touch .env
echo "${{ secrets.ENV_VARS }}" >> .env
- name: create remote directory
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ubuntu
key: ${{ secrets.KEY }}
script: mkdir -p ~/srv/ubuntu
- name: copy source via ssh key
uses: burnett01/[email protected]
with:
switches: -avzr --delete
remote_path: ~/srv/ubuntu/
remote_host: ${{ secrets.HOST }}
remote_user: ubuntu
remote_key: ${{ secrets.KEY }}
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ubuntu
key: ${{ secrets.KEY }}
envs:
script: |
sh ~/srv/ubuntu/docker-install.sh
echo "start docker-compose up: ubuntu"
sudo docker-compose -v
cat ~/srv/ubuntu/.env
sudo docker-compose -f ~/srv/ubuntu/docker-compose.staging.yml pull
sudo docker-compose -f ~/srv/ubuntu/docker-compose.staging.yml --env-file ~/srv/ubuntu/.env up --build -d
echo "prune images"
sudo docker system prune --all -f
deploy-production:
name: Deploy(Production)
needs: deploy-staging
runs-on: ubuntu-latest
environment: DuDoong-Production
steps:
- name: checkout
uses: actions/checkout@master
- name: create env file
run: |
touch .env
echo "${{ secrets.ENV_VARS }}" >> .env
- name: create remote directory
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ubuntu
key: ${{ secrets.KEY }}
script: mkdir -p ~/srv/ubuntu
- name: copy source via ssh key
uses: burnett01/[email protected]
with:
switches: -avzr --delete
remote_path: ~/srv/ubuntu/
remote_host: ${{ secrets.HOST }}
remote_user: ubuntu
remote_key: ${{ secrets.KEY }}
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ubuntu
key: ${{ secrets.KEY }}
envs:
script: |
sh ~/srv/ubuntu/docker-install.sh
echo "start docker-compose up: ubuntu"
sudo docker-compose -v
cat ~/srv/ubuntu/.env
sudo docker-compose -f ~/srv/ubuntu/docker-compose.prod.yml pull
sudo docker-compose -f ~/srv/ubuntu/docker-compose.prod.yml --env-file ~/srv/ubuntu/.env up --build -d
echo "prune images"
sudo docker system prune --all -f