From af3e43af0a6c010058a9d6b528980cae7dd28563 Mon Sep 17 00:00:00 2001 From: Taehoon Date: Mon, 22 Jun 2026 10:08:48 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20CD=20=EC=9B=8C=ED=81=AC=ED=94=8C=EB=A1=9C?= =?UTF-8?q?=EC=9A=B0=20=EC=B6=94=EA=B0=80=20(docker-compose=20=EC=9E=AC?= =?UTF-8?q?=EA=B5=AC=EB=8F=99)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..060d377 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,18 @@ +name: Deploy Web Application + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: self-hosted + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Restart Server + run: | + docker compose down + docker compose up -d --build