Skip to content

Commit

Permalink
Fix: CI/CD 배포 실패 해결하기 (#93)
Browse files Browse the repository at this point in the history
* #90 - feat: 환경변수 이름 변경

* #90 - fix: 잘못된 경로 수정
  • Loading branch information
GGHDMS authored Feb 8, 2024
1 parent 83d6026 commit 97286a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
api.aladin.key: ${{ secrets.ALADIN_KEY }}
spring.jpa.hibernate.ddl-auto: ${{ secrets.DDL_AUTO }}
spring.servlet.multipart.location: ${{ secrets.LOCATION }}
cloud.aws.s3.credentials.access-key: ${{ secrets.AWS_ACCESS_KEY }}
cloud.aws.s3.credentials.secret-key: ${{ secrets.AWS_SECRET_KEY }}
cloud.aws.credentials.access-key: ${{ secrets.S3_PROFILE_ACCESS_KEY }}
cloud.aws.credentials.secret-key: ${{ secrets.S3_PROFILE_SECRET_KEY }}

- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cloud:
s3:
bucket: bookitlist-profile
credentials:
access-key: ${AWS_ACCESS_KEY}
secret-key: ${AWS_SECRET_KEY}
access-key: ${S3_PROFILE_ACCESS_KEY}
secret-key: ${S3_PROFiLE_SECRET_KEY}
region:
static: ap-northeast-2

0 comments on commit 97286a5

Please sign in to comment.