Skip to content

Commit

Permalink
FEAT : CICD 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kimtree24 committed Dec 24, 2024
1 parent ae9d354 commit 3603ede
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: UMC Dev CI/CD

on:
pull_request:
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 == 'genie'

0 comments on commit 3603ede

Please sign in to comment.