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

[Fix] CD 워크플로 & 탬플릿 미세 조정 #47

Merged
merged 4 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/1-FEAT.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name: Feature Request
about: 기능 구현 요청
description: 새로운 기능 구현
title: "[Feat]: ~~"
labels: "🚀 기능 구현 🚀"
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는 직관적이었을까요?
- [ ] 삭제해야 할, 주석처리 된 코드는 없을까요?
5 changes: 0 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 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
2 changes: 1 addition & 1 deletion .github/workflows/Deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
command: |
docker pull goldentrash/plantory:latest
docker stop plantory
docker run -d --rm -p 8080:8080 --mount type=volume,src=resources,dst=/app/resources --name plantory goldentrash/plantory
docker run -d --rm -p 8080:8080 --mount type=volume,src=resources,dst=/app/resources --env-file plantory.env --name plantory goldentrash/plantory
Loading