This repository was archived by the owner on Jan 2, 2026. It is now read-only.
π Bug: μ±λΆκ²μ μλν¬μΈνΈ μμ (#25) #15
This file contains hidden or 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
| 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 |