-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GIthub action과 docker를 통한 CI/CD 구축
- Loading branch information
Showing
364 changed files
with
10,220 additions
and
716 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.next | ||
.storybook | ||
.vscode | ||
.git | ||
.github | ||
tests | ||
.yarn/sdks | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: issue_template | ||
about: Suggest an idea for this project | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
## :briefcase: **구현 개요** | ||
|
||
## :white_check_mark: **진행 계획 및 현황** | ||
|
||
- [ ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: pull_request_template | ||
about: PR에 대한 상세내용 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
- Closes #이슈번호 | ||
|
||
## ✨ **구현 기능 명세** | ||
|
||
## 🎁 **주목할 점** | ||
|
||
## 😭 **어려웠던 점** | ||
|
||
## 🌄 **스크린샷** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: SEOKO Client Deploy | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
|
||
jobs: | ||
build: | ||
name: Build and Push Project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install the project dependencies | ||
run: yarn install | ||
|
||
- name: Create .env file | ||
run: | | ||
jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]' <<< "$SECRETS_CONTEXT" > .env | ||
cat .env | ||
env: | ||
SECRETS_CONTEXT: ${{ toJson(secrets) }} | ||
|
||
- name: Login to Docker Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{secrets.DOCKER_REGISTRY_URL}} | ||
username: ${{secrets.DOCKER_REGISTRY_ACCESS_KEY}} | ||
password: ${{secrets.DOCKER_REGISTRY_SECRET_KEY}} | ||
|
||
- name: Docker build & push to push | ||
run: docker buildx build -t ${{secrets.DOCKER_REGISTRY_URL}}/${{secrets.FRONT_DOCKER_IMAGE_NAME}}:${{ github.sha }} -t ${{secrets.DOCKER_REGISTRY_URL}}/${{secrets.FRONT_DOCKER_IMAGE_NAME}}:latest --push . | ||
|
||
deploy: | ||
needs: build | ||
name: Deploy | ||
runs-on: [seoko-client] | ||
steps: | ||
- name: Login to Docker Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{secrets.DOCKER_REGISTRY_URL}} | ||
username: ${{secrets.DOCKER_REGISTRY_ACCESS_KEY}} | ||
password: ${{secrets.DOCKER_REGISTRY_SECRET_KEY}} | ||
|
||
- name: Docker run | ||
run: | | ||
if [ `docker ps -f "name=front" -q` ] | ||
then | ||
docker rm -f $(docker ps -f "name=front" -q) | ||
fi | ||
docker pull ${{secrets.DOCKER_REGISTRY_URL}}/${{secrets.FRONT_DOCKER_IMAGE_NAME}}:${{ github.sha }} | ||
docker run -dit -p 3000:3000 --name front ${{secrets.DOCKER_REGISTRY_URL}}/${{secrets.FRONT_DOCKER_IMAGE_NAME}}:${{ github.sha }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.