-
Notifications
You must be signed in to change notification settings - Fork 2
145 lines (100 loc) · 4.19 KB
/
deploy.yml
File metadata and controls
145 lines (100 loc) · 4.19 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Java CD with Gradle
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
- name: make application-database.yml
run: |
cd ./src/main/resources
touch ./application-database.yml
echo "${{ secrets.DATABASE }}" >> ./application-database.yml
shell: bash
- name: make test application-database.yml
run: |
cd ./src/test/resources
touch ./application-database.yml
echo "${{ secrets.DATABASE }}" >> ./application-database.yml
shell: bash
- name: make application-api.yml
run: |
cd ./src/main/resources
touch ./application-api.yml
echo "${{ secrets.API }}" >> ./application-api.yml
shell: bash
- name: make test application-api.yml
run: |
cd ./src/test/resources
touch ./application-api.yml
echo "${{ secrets.API }}" >> ./application-api.yml
shell: bash
- name: make application-secret.yml
run: |
cd ./src/main/resources
touch ./application-secret.yml
echo "${{ secrets.SECRET_KEY }}" >> ./application-secret.yml
shell: bash
- name: make test application-secret.yml
run: |
cd ./src/test/resources
touch ./application-secret.yml
echo "${{ secrets.SECRET_KEY }}" >> ./application-secret.yml
shell: bash
- name: Build with Gradle 8.5
run: gradle build
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
aws-region: ap-northeast-2
- name: Make dir
run: mkdir cicd
- name: Copy jar
run: cp ./build/libs/*.jar ./cicd
- name: Copy appspec
run: cp ./appspec.yml ./cicd
- name: Copy script
run: cp ./scripts/deploy.sh ./cicd
- name: Make Zip File
run: zip -qq -r ./$GITHUB_SHA.zip .
shell: bash
- name: Upload to S3
run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://woojjam/$GITHUB_SHA.zip
- name: Code Deploy
run: aws deploy create-deployment --application-name woojjam-code-deploy-app --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name woojjam-code-deploy-group --s3-location bucket=woojjam,bundleType=zip,key=$GITHUB_SHA.zip
dependency-submission:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies.
# See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0