This repository was archived by the owner on Jan 2, 2026. It is now read-only.
🐛 Fix: axios import 방식 변경 #18
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: Front Deploy | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| paths-ignore: | |
| - '.github/**' | |
| workflow_dispatch: | |
| 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/talkpick-frontend/app* | |
| cp -r . /deploy/talkpick-frontend/app | |
| - name: Restart Docker | |
| run: | | |
| cd /deploy | |
| docker-compose up -d --build --force-recreate front |