Skip to content

Commit

Permalink
💚 Ci: 빌드 스크립트 수정
Browse files Browse the repository at this point in the history
두 종류의 트리거를 지원합니다
  • Loading branch information
swa07016 committed Oct 15, 2023
1 parent 406fc8a commit 4d69b7e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ on:
branches:
- develop
pull_request:
branches:
- develop
types: [closed]
workflow_dispatch: # (2).수동 실행도 가능하도록

jobs:
build:
runs-on: ubuntu-latest # (3).OS환경
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'develop'
if: github.event.pull_request && github.event.pull_request.merged == true

steps:
- name: Checkout
Expand Down

0 comments on commit 4d69b7e

Please sign in to comment.