From 4f970d715713670f6452e524e51506b666284f05 Mon Sep 17 00:00:00 2001 From: haeun1107 Date: Sat, 3 Aug 2024 01:41:08 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20build=20=EC=A1=B0=EA=B1=B4=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev_deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index 3e19ea9..0783b4a 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -1,14 +1,14 @@ name: AECOFARM Dev CI/CD on: + push: + branches: [ main ] pull_request: - types: [closed] - workflow_dispatch: # (2).수동 실행도 가능하도록 + branches: [ main ] jobs: build: - runs-on: ubuntu-latest # (3).OS환경 - if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main' + runs-on: ubuntu-latest steps: - name: Checkout