Skip to content

Commit

Permalink
fix: env inject values
Browse files Browse the repository at this point in the history
  • Loading branch information
DongGeon0908 committed Jul 7, 2024
1 parent 5ad5fb4 commit 3517226
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ jobs:
cloud.aws.credentials.accessKey: ${{ secrets.AWS_ACCESS_KEY_ID }}
cloud.aws.credentials.secretKey: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# Jwt Secret Key 환경 변수 주입
auth.jwt.secret: ${{ auth.jwt.secret }}
auth.jwt.secret: ${{ secrets.auth.jwt.secret }}
# Encrypt 환경 변수 주입
encrypt.key: ${{ encrypt.key }}
encrypt.algorithm: ${{ encrypt.algorithm }}
encrypt.key: ${{ secrets.encrypt.key }}
encrypt.algorithm: ${{ secrets.encrypt.algorithm }}

# gradlew 파일 실행권한 설정
- name: Grant execute permission for gradlew
Expand Down

0 comments on commit 3517226

Please sign in to comment.