-
Notifications
You must be signed in to change notification settings - Fork 2
95 lines (76 loc) · 2.48 KB
/
front-web-cd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: 프론트엔드 @app/web CD
on:
push:
branches: [main, release]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: ✅ 체크아웃
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: ☑️ pnpm 버전 설정
uses: pnpm/action-setup@v3
with:
version: 9
- name: ☑️ 노드 버전 설정
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: ⬇️ 의존성 설치
run: pnpm install --frozen-lockfile
- name: 📦 프로젝트 빌드
run: pnpm build:web
build:
runs-on: ubuntu-latest
needs: ci
steps:
- name: ✅ 체크아웃
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: .env 파일 생성
run: |
jq -r 'to_entries|map("\(.key)=\(.value|tostring)")|.[]' <<< "$SECRETS_CONTEXT" > .env
mv .env apps/web/.env
env:
SECRETS_CONTEXT: ${{ toJson(secrets) }}
- name: 🐳 Docker 로그인
uses: docker/login-action@v3
with:
registry: ${{secrets.DOCKER_REGISTRY_URL}}
username: ${{secrets.DOCKER_REGISTRY_ACCESS_KEY}}
password: ${{secrets.DOCKER_REGISTRY_SECRET_KEY}}
- name: 🐳 Docker 빌드 및 푸시
run: docker buildx build -f apps/web/Dockerfile . -t ${{secrets.DOCKER_REGISTRY_URL}}/web:${{ github.sha }} -t ${{secrets.DOCKER_REGISTRY_URL}}/web:latest --push
deploy:
needs: build
name: Deploy Web
runs-on: [ticle-main]
steps:
- name: 🐳 Docker 로그인
uses: docker/login-action@v3
with:
registry: ${{secrets.DOCKER_REGISTRY_URL}}
username: ${{secrets.DOCKER_REGISTRY_ACCESS_KEY}}
password: ${{secrets.DOCKER_REGISTRY_SECRET_KEY}}
- name: 🐳 Docker 이미지 다운로드
run: |
docker pull ${{secrets.DOCKER_REGISTRY_URL}}/web:${{ github.sha }}
- name: 🐳 Docker 기존 컨테이너 종료
run: |
docker stop web || true
docker rm web || true
- name: 🐳 web 컨테이너 실행
run: |
docker run -dit --name web \
-p 3000:3000 \
${{secrets.DOCKER_REGISTRY_URL}}/web:${{ github.sha }}
- name: 🐳 사용하지 않는 Docker 이미지 제거
run: |
docker image prune --all --force