Skip to content

Commit

Permalink
Merge pull request #32 from UMC-FITple/fix/#30_backend_cicd-2
Browse files Browse the repository at this point in the history
CI/CD 파이프라인 수정
  • Loading branch information
seoyeoneel02 authored Aug 13, 2024
2 parents d464973 + 28ad8cb commit 856b372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 사용)
Expand Down

0 comments on commit 856b372

Please sign in to comment.