Skip to content

Commit

Permalink
avances
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielromerod committed May 16, 2024
1 parent 1eaa7f7 commit 894bfb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Build Docker image
run: |
docker build -t spring-boot-app
docker build -t spring-boot-app .
- name: Tag Docker image
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ public class EstudianteController {
private EstudianteService estudianteService;

@GetMapping("/hola")
public String index() {
return "Hola pepe";
public ResponseEntity<String> hola() {
return ResponseEntity.ok("Hola Mundo");
}

@PostMapping
Expand Down

0 comments on commit 894bfb3

Please sign in to comment.