Skip to content

Commit

Permalink
[Chore] dev.yml 파일 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jj0526 authored Dec 26, 2024
1 parent 3eaa8f5 commit e746293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# 환경별 yml 파일 생성(1) - application.yml
- name: make application.yml
if: |
contains(github.ref, 'develop')
contains(github.ref, 'dev')
run: |
cd ./src/main/resources # resources 폴더로 이동
touch ./application.yml # application.yml 생성
Expand All @@ -53,7 +53,7 @@ jobs:

# 환경별 yml 파일 생성(2) - dev
- name: make application-dev.yml
if: contains(github.ref, 'develop')
if: contains(github.ref, 'dev')
run: |
cd ./src/main/resources
touch ./application-dev.yml
Expand Down

0 comments on commit e746293

Please sign in to comment.