From 28ad8cbe6b6d2f0d766e0545ec09db82e8154e45 Mon Sep 17 00:00:00 2001 From: seoyeoneel02 Date: Wed, 14 Aug 2024 01:42:55 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20dev=5Fdeploy=20if=EB=AC=B8,=20node=20?= =?UTF-8?q?=EB=B2=84=EC=A0=84=20=EC=88=98=EC=A0=95=20#30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dev_deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev_deploy.yml b/.github/workflows/dev_deploy.yml index d3ca302..8cca059 100644 --- a/.github/workflows/dev_deploy.yml +++ b/.github/workflows/dev_deploy.yml @@ -8,13 +8,13 @@ on: jobs: build: # pull 요청이 dev에 merge 되었을 때 아래 steps를 실행 - if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'dev' + if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'release' runs-on: ubuntu-latest # 우분투 최신 버전으로 실행 strategy: matrix: - node-version: ['18.x'] # 노드 버전 지정! 여러 개도 가능! ['18.x', '14.x'] 요렇게 + node-version: ['18', '16', '14'] # 노드 버전 지정! 여러 개도 가능! ['18.x', '14.x'] 요렇게 steps: # build 할 코드를 가져옴 (코드 checkout - github에서 제공해주는 checkout@v3 사용)