Skip to content

Commit

Permalink
chore: workflow 이름 수정, prod-cd 파일 filter 디렉터리 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hwinkr authored and hw0603 committed Aug 23, 2024
1 parent 26fe058 commit 16a87bd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/frontend-dev-cd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 모모 프론트엔드 배포 자동화 워크플로우
name: 모모 프론트엔드 배포 자동화 워크플로우(dev)

on:
push:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/frontend-prod-cd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: 모모 프론트엔드 배포 자동화 워크플로우
name: 모모 프론트엔드 배포 자동화 워크플로우(prod)

on:
workflow_dispatch:
push:
tags: release-**

Expand All @@ -18,11 +19,11 @@ jobs:
steps:
- uses: actions/checkout@v4 # Push 이벤트이기 때문에 checkout 해야 함
with:
ref: develop
ref: main
- uses: dorny/paths-filter@v3
id: filter
with:
base: "develop" # 해당 브랜치의 last commit과 변경점 비교
base: "main" # 해당 브랜치의 last commit과 변경점 비교
filters: |
backend:
- 'backend/**'
Expand Down

0 comments on commit 16a87bd

Please sign in to comment.