Skip to content

Commit 20ab480

Browse files
committed
chore: aws 배포 스크립트 수정
스크립트 오류 수정
1 parent e26d6fd commit 20ab480

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.cd.prod.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ jobs:
4343
cd ./src/main/resources
4444
touch ./application.yml
4545
touch ./application-secret.yml
46-
echo "${{ secrets.APPLICATION }}" > ./application.yml
47-
echo "${{ secrets.SECRET }}" > ./application-secret.yml
46+
47+
echo "${{ secrets.APPLICATION }}" | base64 --decode > ./src/main/resources/application.yml
48+
echo "${{ secrets.SECRET }}" | base64 --decode > ./src/main/resources/application-secret.yml
4849
4950
# Gradle cache 설정
5051
- name: Cache Gradle packages

0 commit comments

Comments
 (0)