File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed
Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 1818 distribution : temurin
1919 java-version : 21
2020
21- - name : Gradle 캐싱
22- uses : actions/cache@v4
23- with :
24- path : |
25- ~/.gradle/caches
26- ~/.gradle/wrapper
27- key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
28- restore-keys : |
29- ${{ runner.os }}-gradle-
30-
3121 - name : 운영용 .properties로 교체
3222 run : echo "${{ secrets.APPLICATION_PROPERTIES }}" > ./src/main/resources/application.properties
3323
Original file line number Diff line number Diff line change @@ -33,3 +33,10 @@ aws.s3.region=ap-northeast-2
3333aws.s3.bucket =killingpart-file
3434aws.s3.url =${S3_URL}
3535
36+ spring.mail.host =smtp.gmail.com
37+ spring.mail.port =587
38+ spring.mail.username =${SMTP_NAME}
39+ spring.mail.password =${SMTP_PWD}
40+ spring.mail.properties.mail.smtp.auth =true
41+ spring.mail.properties.mail.smtp.starttls.enable =true
42+ spring.mail.survey.email =${SEND_EMAIL}
You can’t perform that action at this time.
0 commit comments