-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (62 loc) · 2.01 KB
/
api-CI.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
name: Motivoo API Server CI
on: # 트리거
push:
branches: [ "develop" ]
paths:
- motivoo-api/**
- motivoo-domain/**
- motivoo-common/**
- motivoo-external/**
pull_request:
branches: [ "develop" ]
paths:
- motivoo-api/**
- motivoo-domain/**
- motivoo-common/**
- motivoo-external/**
permissions:
contents: read
jobs:
build: # job#1
runs-on: ubuntu-22.04
env:
working-directory: ./ # 프로젝트 디렉토리
steps: # 작업 단위
- name: 체크아웃
uses: actions/checkout@v3
- name: Java 실행 환경 - JDK 17 세팅
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
aws-region: ap-northeast-2
- name: application.yml (API 모듈) 파일 생성
run: |
# yml을 생성할 디렉터리로 작업 디렉터리 이동
cd ./motivoo-api/src/main/resources
echo "${{ secrets.APPLICATION }}" > ./application-deploy.yml
working-directory: ${{ env.working-directory }}
- name: Firebase JSON 파일 생성
run: |
cd ./motivoo-api/src/main/resources
mkdir ./firebase
cd ./firebase
echo $(ls -al)
aws s3 cp --region ap-northeast-2 s3://${{ secrets.S3_BUCKET_PATH }}/motivoo-firebase-adminsdk.json .
echo $(ls -al; pwd)
shell: bash
- name: Gradle Properties 파일 생성
run: |
echo "${{ secrets.GRADLE_PROPERTIES }}" > ./local.properties
working-directory: ${{ env.working-directory }}
- name: 빌드
run: |
chmod +x gradlew
./gradlew motivoo-api:bootJar
working-directory: ${{ env.working-directory }}
shell: bash