Skip to content

Commit 478c4e0

Browse files
7zrvm-a-king
authored andcommitted
fix: add env to CD.yml (#39)
- CD.yml에 빌드를 위한 환경변수 추가
1 parent a5f4b72 commit 478c4e0

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/CD.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ jobs:
66
build-and-push:
77
runs-on: ubuntu-latest
88

9+
env:
10+
DB_URL: ${{ secrets.DB_URL }}
11+
DB_USERNAME: ${{ secrets.DB_USERNAME }}
12+
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
13+
REDIS_HOST: ${{ secrets.REDIS_HOST}}
14+
REDIS_PORT: ${{ secrets.REDIS_PORT }}
15+
NAVER_CLIENT_ID: ${{ secrets.NAVER_CLIENT_ID }}
16+
NAVER_CLIENT_SECRET: ${{ secrets.NAVER_CLIENT_SECRET }}
17+
NAVER_SCOPE: ${{ secrets.NAVER_SCOPE }}
18+
JWT_SECRET: ${{ secrets.JWT_SECRET }}
19+
920
steps:
1021
- name: Github Repository 파일 불러오기
1122
uses: actions/checkout@v4

0 commit comments

Comments
 (0)