Skip to content

Commit 2352b59

Browse files
committed
워크플로우 수정 테스트
1 parent 28e744a commit 2352b59

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/deploy-auth-service.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,5 @@ jobs:
4848
4949
- name: Deploy to GKE
5050
run: |
51-
kubectl set image deployment/auth-service auth-service=gcr.io/${{ secrets.PROJECT_ID }}/auth-service:$GITHUB_SHA
51+
IMAGE=asia-northeast3-docker.pkg.dev/${{ secrets.PROJECT_ID }}/docker-repo/auth-service:$GITHUB_SHA
52+
kubectl set image deployment/auth-service auth-service=$IMAGE

auth-service/src/main/java/com/devloger/authservice/controller/AuthController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class AuthController {
2222

2323
@GetMapping("/test")
2424
public ResponseEntity<String> test() {
25-
return ResponseEntity.ok("Hello, World!!");
25+
return ResponseEntity.ok("Hello, World!");
2626
}
2727

2828
@PostMapping("/signup")

0 commit comments

Comments
 (0)