-
Notifications
You must be signed in to change notification settings - Fork 1
73 lines (64 loc) · 1.98 KB
/
cicd.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
name: build and deploy
on:
push:
branches: ['main']
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
environment: main
steps:
- name: Checkout Github actions
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Run chmod to make gradlew executable
run: chmod +x ./gradlew
- name: Build with Gradle
uses : gradle/gradle-build-action@v2
with:
arguments: |
build
--scan
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker Build & Push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/dive_server:latest
- name: copy docker-compose -> EC2 server
uses: appleboy/[email protected]
with:
host: ${{ secrets.DIVE_SERVER_IP }}
username: ubuntu
key: ${{ secrets.EC2_SSH_KEY }}
source: docker-compose.yml
target: /home/ubuntu/
deploy:
runs-on: ubuntu-latest
environment: main
needs: build
steps:
- name: Docker compose
uses: appleboy/[email protected]
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
with:
host: ${{ secrets.DIVE_SERVER_IP }}
username: ubuntu
key: ${{ secrets.EC2_SSH_KEY }}
envs: DOCKERHUB_USERNAME
script: |
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
sudo docker pull ${{ env.DOCKERHUB_USERNAME }}/dive_server:latest
sudo docker compose -f /home/ubuntu/docker-compose.yml up -d
sudo docker image prune -a -f