Skip to content

Commit

Permalink
fixed issue related to artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
muskangupta042002 committed Sep 10, 2023
1 parent 3a5f4e1 commit 96ea164
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/BuildAndTestSource.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
run: |
echo "${{ secrets.DEV_KEY_PAIR }}" >> SpringKeyPair.pem
chmod 400 SpringKeyPair.pem
- name: Download JAR Artifact
uses: actions/download-artifact@v2
with:
name: springrolls
path: .
- name: Deploy to EC2
if: github.event.pull_request.merged == true
run: |
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/greeting.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="'Hello, ' + ${name} + '!!'" />
<p th:text="'Hello, ' + ${name} + '!'" />
</body>
</html>

0 comments on commit 96ea164

Please sign in to comment.