Skip to content

Commit

Permalink
refactor: feature/#147 prod runner 구분 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
kunsanglee committed Jul 30, 2024
1 parent d386dcc commit ec7141e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: backend-push

on:
push:
branches: [ "be-dev", "feature/#147" ]
branches: [ "be-dev" ]
paths:
- 'server/**'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: backend-push

on:
push:
branches: [ "main" ]
branches: [ "main", "feature/#147" ]
paths:
- 'server/**'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ public class HaengdongApplication {

public static void main(String[] args) {
SpringApplication.run(HaengdongApplication.class, args);

}

}

0 comments on commit ec7141e

Please sign in to comment.