Skip to content

Commit

Permalink
hotfix: CD 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
gmlrude committed Sep 10, 2024
1 parent b734ca7 commit 21f8f1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Checkit Backend CD # workflow 이름

on: # Event
pull_request:
types:
Expand All @@ -10,7 +11,7 @@ on: # Event

jobs: # Job
cd: # Job 이름
if: github.event.pull_request.merged == true # Job 실행 조건
if: github.event.pull_request.merged == true || github.event_name == 'push' # Job 실행 조건

runs-on: ubuntu-latest # Runner

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'CI'
name: 'Checkit Backend CI'

on:
push:
Expand Down

0 comments on commit 21f8f1e

Please sign in to comment.