Skip to content

Commit

Permalink
fix: github actions secrets 주입 확인
Browse files Browse the repository at this point in the history
  • Loading branch information
peeerr committed Oct 26, 2024
1 parent 167a938 commit 61acd78
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/pr_weekly_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ jobs:
aws.s3.accessKey: ${{ secrets.AWS_S3_ACCESS_KEY }}
aws.s3.secretKey: ${{ secrets.AWS_S3_SECRET_KEY }}

- name: Secrets 디버깅
run: |
echo "RDS_URL is ${{ secrets.RDS_URL }} 값으로 설정되었습니다."
echo "RDS_USERNAME is ${{ secrets.RDS_USERNAME }} 값으로 설정되었습니다."
echo "RDS_PASSWORD가 설정되었습니다. (마스킹됨)"
echo "AWS_S3_BUCKET은 ${{ secrets.AWS_S3_BUCKET }} 값으로 설정되었습니다."
echo "AWS_S3_ACCESS_KEY는 ${{ secrets.AWS_S3_ACCESS_KEY }} 값으로 설정되었습니다."
echo "AWS_S3_SECRET_KEY가 설정되었습니다. (마스킹됨)"
- name: 빌드 테스트 수행
run: |
chmod +x ./gradlew
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies {
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.6'

compileOnly 'org.projectlombok:lombok'
// runtimeOnly 'com.h2database:h2'
runtimeOnly 'com.h2database:h2'
implementation 'org.hibernate:hibernate-spatial:6.6.1.Final'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
Expand Down

0 comments on commit 61acd78

Please sign in to comment.