Skip to content

[Release] 2차 배포 (25.01.23) #7

[Release] 2차 배포 (25.01.23)

[Release] 2차 배포 (25.01.23) #7

Workflow file for this run

name: 백엔드 @app/media 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:media
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/media/.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: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: 🐳 Docker 빌드 및 푸시
uses: docker/build-push-action@v6
with:
context: .
file: apps/media/Dockerfile
push: true
tags: ${{secrets.DOCKER_REGISTRY_URL}}/media:${{ github.sha }},${{secrets.DOCKER_REGISTRY_URL}}/media:latest
cache-from: type=gha
cache-to: type=gha,mode=min
deploy-test:
needs: build
name: Deploy media
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}}/media:${{ github.sha }}
- name: 🐳 Docker 기존 컨테이너 종료
run: |
docker stop media || true
docker rm media || true
- name: 🐳 media 컨테이너 실행
run: |
docker run -dit --network host --name media ${{secrets.DOCKER_REGISTRY_URL}}/media:${{ github.sha }}
- name: 🐳 사용하지 않는 Docker 이미지 제거
run: |
docker image prune --all --force