Skip to content

Commit 32d7bba

Browse files
authored
Merge pull request #33 from UMC-7/marco-develop
[Feat] 11주차 실습 github action 스크립트
2 parents 12efb60 + da35742 commit 32d7bba

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/dev_deploy.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: UMC Dev CI/CD // 여러분들 맘대로 이름 지으세요
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
workflow_dispatch: # (2).수동 실행도 가능하도록
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest # (3).OS환경
11+
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'develop'

0 commit comments

Comments
 (0)