-
Notifications
You must be signed in to change notification settings - Fork 0
109 lines (91 loc) · 3.46 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
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
name: CI/CD
on:
push:
branches: [ "develop" ]
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '21'
- name: Generate afterInstall.sh
run: |
mkdir -p ./scripts
cat <<EOF > ./scripts/afterInstall.sh
${{ secrets.AFTER_INSTALL_SCRIPT }}
EOF
shell: bash
- name: Set execute permission for afterInstall.sh
run: chmod +x ./scripts/afterInstall.sh
- name: Generate appspec.yml
run: |
cat <<EOF > appspec.yml
${{ secrets.APPSPEC_YML }}
EOF
shell: bash
- name: make application-secret.yml
run: |
touch ./src/main/resources/application-secret.yml
echo "${{ secrets.APPLICATION_SECRET }}" > ./src/main/resources/application-secret.yml
shell: bash
- name: make chat-prompt.txt
run: |
touch ./src/main/resources/chat-prompt.txt
echo "${{ secrets.CHAT_PROMPT }}" > ./src/main/resources/chat-prompt.txt
shell: bash
- name: make chat-summary-prompt.txt
run: |
cat <<EOF > ./src/main/resources/chat-summary-prompt.txt
${{ secrets.CHAT_SUMMARY_PROMPT }}
EOF
shell: bash
- name: make memo-summary-prompt.txt
run: |
touch ./src/main/resources/memo-summary-prompt.txt
echo "${{ secrets.MEMO_SUMMARY_PROMPT }}" > ./src/main/resources/memo-summary-prompt.txt
shell: bash
- name: make ability-analysis-prompt.txt
run: |
cat <<EOF > ./src/main/resources/ability-analysis-prompt.txt
${{ secrets.ABILITY_ANALYSIS_PROMPT }}
EOF
shell: bash
- name: Grant execute permission for gradlew
run: |
chmod +x gradlew
./gradlew build -x test
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ap-northeast-2
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build, tag, and push image to Amazon ECR
run: |
ECR_REGISTRY=${{ steps.login-ecr.outputs.registry }}
ECR_REPOSITORY=moamoa
IMAGE_TAG=latest
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
- name: Upload to S3
run: |
S3_BUCKET_NAME=${{ secrets.S3_BUCKET_NAME }}
zip -r ./$GITHUB_SHA.zip ./scripts appspec.yml
aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://$S3_BUCKET_NAME
- name: Deploy to EC2 with CodeDeploy
run: |
CODE_DEPLOY_APPLICATION_NAME=${{ secrets.CODE_DEPLOY_APPLICATION_NAME }}
CODE_DEPLOY_DEPLOYMENT_GROUP_NAME=${{ secrets.CODE_DEPLOY_DEPLOYMENT_GROUP_NAME }}
S3_BUCKET_NAME=${{ secrets.S3_BUCKET_NAME }}
aws deploy create-deployment \
--application-name $CODE_DEPLOY_APPLICATION_NAME \
--deployment-config-name CodeDeployDefault.AllAtOnce \
--deployment-group-name $CODE_DEPLOY_DEPLOYMENT_GROUP_NAME \
--s3-location bucket=$S3_BUCKET_NAME,key=$GITHUB_SHA.zip,bundleType=zip