Skip to content

Commit

Permalink
fix: git workflow 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
songhaechan committed Oct 29, 2024
1 parent 8f40ff6 commit df59831
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/amorgakco-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: AmorGakCo CD
on:
push:
paths:
- "/main"
- "main/**"
branches:
- main

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ public IdResponse register(
@GetMapping("/{groupId}/basic")
public GroupBasicResponse getGroupBasic(
@PathVariable final Long groupId, @AuthMember final Member member) {
return groupService.getBasicGroup(groupId,member);
return groupService.getBasicGroup(groupId, member);
}

@GetMapping("/{groupId}/detail")
public GroupDetailResponse getGroupDetail(@PathVariable final Long groupId, @AuthMemberId final Long memberId) {
return groupService.getDetailGroup(groupId,memberId);
return groupService.getDetailGroup(groupId, memberId);
}

@DeleteMapping("/{groupId}")
Expand Down

0 comments on commit df59831

Please sign in to comment.