Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

✨ Feat: 약품 상세정보 페이지 연동 (#10) #8

✨ Feat: 약품 상세정보 페이지 연동 (#10)

✨ Feat: 약품 상세정보 페이지 연동 (#10) #8

Workflow file for this run

name: Frontend Deploy
on:
push:
branches:
- dev
paths-ignore:
- '.github/workflows/**'
jobs:
deploy:
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Copy frontend code to shared volume
run: |
rm -rf /deploy/app/*
cp -r . /deploy/app/
- name: Restart Docker (Frontend Node.js)
run: |
cd /deploy/app
docker-compose down
docker-compose up -d --build