This repository was archived by the owner on Jan 2, 2026. It is now read-only.
✨Feature: 공용서비스 요청시 인증정보 및 쿠키 안보내도록 설정 (#48) #16
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 |