-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (67 loc) · 2.37 KB
/
cicd-dev.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
name: Development Server CI/CD
on:
push:
branches: [ "develop" ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: ✔️ checkout
uses: actions/checkout@v3
- name: ✔️ set JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
- name: ✔️ create application.yml
run: |
cd ./doorip-api/src/main/resources
touch ./application.yml
echo "$APPLICATION_DEV" > ./application.yml
env:
APPLICATION_DEV: ${{ secrets.APPLICATION_DEV }}
- name: ✔️ give executive authority to gradlew
run: chmod +x gradlew
- name: ✔️ build gradlew
run: ./gradlew doorip-api:build -x test
- name: ✔️ build docker image and push to docker hub
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build -t ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY }} .
docker push ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY }}
- name: ✔️ send deploy.sh to EC2 development server
uses: appleboy/scp-action@master
with:
username: ubuntu
host: ${{ secrets.EC2_DEV_HOST }}
key: ${{ secrets.EC2_KEY }}
port: ${{ secrets.EC2_PORT }}
source: "./scripts/deploy.sh"
target: "/home/ubuntu/"
- name: ✔️ send docker-compose.yml to EC2 development server
uses: appleboy/scp-action@master
with:
username: ubuntu
host: ${{ secrets.EC2_DEV_HOST }}
key: ${{ secrets.EC2_KEY }}
port: ${{ secrets.EC2_PORT }}
source: "./docker-compose.yml"
target: "/home/ubuntu/"
cd:
needs: ci
runs-on: ubuntu-latest
steps:
- name: ✔️ checkout
uses: actions/checkout@v3
- name: ✔️ pull docker image from docker hub and deploy
uses: appleboy/ssh-action@master
with:
username: ubuntu
host: ${{ secrets.EC2_DEV_HOST }}
key: ${{ secrets.EC2_KEY }}
script: |
sudo docker pull ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_REPOSITORY }}
chmod 777 ./scripts/deploy.sh
cp ./scripts/deploy.sh ./deploy.sh
./deploy.sh
docker image prune -f