Skip to content

Commit

Permalink
스크립트 오타수정
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjoon committed Sep 19, 2024
1 parent 657fa90 commit 3d41f25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/backend_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:

rollBackA:
name: 🚀 Server A RollBack
needs: [healthCheckA, find_now_version]
needs: [healthCheckA, findPreviousImageVersion]
if: failure()
runs-on: [ self-hosted, devel-up-prod-a ]
defaults:
Expand Down
2 changes: 2 additions & 0 deletions backend/src/main/java/develup/api/HealthApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ public class HealthApi {

@GetMapping("/health")
public ResponseEntity<ApiResponse<String>> health() {


return ResponseEntity.status(200).body(new ApiResponse<>("up"));
}
}

0 comments on commit 3d41f25

Please sign in to comment.