Skip to content

Commit cbc46a5

Browse files
authored
Merge pull request #11 from cupofpython/cleanup
cleanup
2 parents 0026b06 + 855ee66 commit cbc46a5

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/build-and-push.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ jobs:
2727
with:
2828
username: ${{ env.USERNAME }}
2929
password: ${{ env.PASSWORD }}
30-
31-
- uses: actions/checkout@v4
30+
3231
- name: Build and push the Docker image
3332
run: |
3433
docker build -t $IMAGE_NAME:${{ inputs.IMAGE_TAG }} .

.github/workflows/deploy-to-eks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
- name: Deploy to EKS
3838
run: |
3939
kubectl set image deployment/server server=${{ env.IMAGE_NAME }}:${{ inputs.IMAGE_TAG }} -n ${{ env.NAMESPACE }}
40-
kubectl rollout status deployment/server -n cat-chatbot
40+
kubectl rollout status deployment/server -n ${{ env.NAMESPACE }}

src/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function App() {
109109
type="text"
110110
value={catName}
111111
onChange={(e) => setCatName(e.target.value)}
112-
placeholder="e.g., Whiskers"
112+
placeholder="e.g., Pebble"
113113
required
114114
/>
115115
</div>

0 commit comments

Comments
 (0)