Skip to content

Commit

Permalink
fixed error
Browse files Browse the repository at this point in the history
  • Loading branch information
muskangupta042002 committed Sep 10, 2023
1 parent 96ea164 commit 88eaeb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/BuildAndTestSource.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: springrolls
path: ${{ secrets.JAR_FILE }}
path: ${{ secrets.JAR_FILE }}

deploy:
runs-on: ubuntu-latest
Expand All @@ -47,7 +47,7 @@ jobs:
uses: actions/download-artifact@v2
with:
name: springrolls
path: .
path: ${{ secrets.JAR_FILE }}
- name: Deploy to EC2
if: github.event.pull_request.merged == true
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class GreetingController {

@GetMapping("/greeting")
public String greeting(@RequestParam(name="name", required=false, defaultValue="World!!") String name, Model model) {
public String greeting(@RequestParam(name="name", required=false, defaultValue="World!") String name, Model model) {
model.addAttribute("name", name);
return "greeting";
}
Expand Down

0 comments on commit 88eaeb1

Please sign in to comment.