-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (92 loc) · 3.09 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: CD
on:
pull_request:
types: [closed]
branches: ["main"]
permissions:
contents: write
jobs:
deploy:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build with Gradle and run restDocsTest
uses: gradle/gradle-build-action@v3
with:
arguments: restDocsTest
build-root-directory: .
- name: List entire directory after restDocsTest
run: |
echo "Listing entire directory structure after restDocsTest:"
find . -type f
- name: Build with Gradle and run asciidoctor
uses: gradle/gradle-build-action@v3
with:
arguments: asciidoctor
build-root-directory: .
- name: List entire directory after asciidoctor
run: |
echo "Listing entire directory structure after asciidoctor:"
find . -type f
- name: Build with Gradle and copy API Documents
uses: gradle/gradle-build-action@v3
with:
arguments: copyApiDocument
build-root-directory: .
- name: List entire directory after copyApiDocument
run: |
echo "Listing entire directory structure after copyApiDocument:"
find . -type f
- name: Build with Gradle
uses: gradle/gradle-build-action@v3
with:
arguments: build
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/dev:latest
- name: Add SSH key
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Add known_hosts
run: echo "${{ secrets.SSH_KNOWN_HOSTS }}" >> ~/.ssh/known_hosts
- name: Deploy to server
run: |
ssh ${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }} << 'EOF'
docker pull ${{ secrets.DOCKER_USERNAME }}/dev:latest
docker stop app || true
docker rm app || true
docker run -d --name app -p 8080:8080 \
--env-file /home/ubuntu/.env \
-v /home/ubuntu/cert:/cert \
${{ secrets.DOCKER_USERNAME }}/dev:latest
docker ps -a
docker logs app
EOF