-
Notifications
You must be signed in to change notification settings - Fork 5
54 lines (41 loc) · 1.27 KB
/
be-dev-ci-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
name: BE DEV CI/CD
on:
push:
branches: [ develop/be ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./backend
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build
- name: Sign in Dockerhub
uses: docker/login-action@v1
with:
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build the Docker image
run: docker build -f ./Dockerfile --platform linux/arm64 --no-cache -t touroot/touroot-api .
- name: Push the Docker Image to Dockerhub
run: docker push touroot/touroot-api
deploy:
needs: build
runs-on: self-hosted
steps:
- name: Docker Image pull
run: sudo docker pull touroot/touroot-api
- name: Docker Compose up
run: sudo docker compose -f ~/docker/touroot-docker.yml up -d