We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a56a6e commit df28589Copy full SHA for df28589
1 file changed
.github/workflows/ci-cd.yml
@@ -38,6 +38,17 @@ jobs:
38
# 'build' 명령어는 'test' 작업을 포함하므로, 단위 테스트가 자동으로 실행됩니다.
39
- name: Build with Gradle
40
run: ./gradlew build
41
+ env:
42
+ # --- DB 관련 시크릿 추가 ---
43
+ DB_URL: ${{ secrets.DB_URL }}
44
+ DB_USERNAME: ${{ secrets.DB_USERNAME }}
45
+ DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
46
+
47
+ # --- 기존 R2 관련 시크릿 ---
48
+ R2_ENDPOINT: ${{ secrets.R2_ENDPOINT }}
49
+ R2_BUCKET: ${{ secrets.R2_BUCKET }}
50
+ R2_ACCESS_KEY: ${{ secrets.R2_ACCESS_KEY }}
51
+ R2_SECRET_KEY: ${{ secrets.R2_SECRET_KEY }}
52
53
# 5. AWS 자격 증명 설정 (OIDC 방식)
54
- name: Configure AWS credentials using OIDC
0 commit comments