Skip to content

Commit

Permalink
cd test
Browse files Browse the repository at this point in the history
  • Loading branch information
sycuuui committed Jun 4, 2024
1 parent 3c61065 commit 7ceafe9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: application.yaml 생성
run: |
echo "${{ secrets.APPLICATION }}" > src/main/resources/application.yaml
echo "${{ secrets.APPLICATION }}" > src/main/resources/application.yml
working-directory: ${{ env.working-directory }}

- name: 빌드
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public class PlanController {
public ApiResponse savePlan(@AuthenticationPrincipal PrincipalDetails principalDetails,@RequestBody PlanReq planReq){
planService.savePlan(principalDetails.getMember(),planReq);
return ApiResponse.success(Success.CREATE_PLAN_SUCCESS);

}

@PostMapping("/{plan_id}")
Expand Down

0 comments on commit 7ceafe9

Please sign in to comment.