Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
fix: CD workflow에서 환경변수가 제대로 설정되지 않던 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
goldentrash committed Jan 27, 2024
1 parent a044ad2 commit 96c3aa6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1-FEAT.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Feature Request
about: 기능 구현 요청
description: 새로운 기능 구현
title: "[Feat]: ~~"
title: "[Feat] ~~"
labels: "🚀 기능 구현 🚀"
assignees: ''

Expand Down
1 change: 0 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

### 등록 전 확인

- [ ] 모든 test가 pass했나요?
- [ ] 모든 code가 well-formatted인가요?
- [ ] commit message는 직관적이었을까요?
- [ ] 삭제해야 할, 주석처리 된 코드는 없을까요?
9 changes: 4 additions & 5 deletions .github/workflows/Continuous Delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ jobs:
Delivery:
runs-on: ubuntu-22.04

env:
DB_URL: ${{ secrets.DB_URL }}
DB_USER: ${{ secrets.DB_USR }}
DB_PASSWORD: ${{ secrets.DB_PWD }}

steps:
- name: Set up sources
uses: actions/checkout@v4
Expand All @@ -33,6 +28,10 @@ jobs:

- name: Execute Gradle build
run: ./gradlew build
env:
DB_URL: ${{ secrets.DB_URL }}
DB_USER: ${{ secrets.DB_USR }}
DB_PASSWORD: ${{ secrets.DB_PWD }}

- name: Login to docker-hub
uses: docker/login-action@v3
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/Continuous Integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ jobs:
Test:
runs-on: ubuntu-22.04

env:
DB_URL: ${{ secrets.DB_URL }}
DB_USER: ${{ secrets.DB_USR }}
DB_PASSWORD: ${{ secrets.DB_PWD }}

steps:
- name: Set up sources
uses: actions/checkout@v4
Expand Down

0 comments on commit 96c3aa6

Please sign in to comment.