Skip to content

Commit

Permalink
add: a test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mizanmahi committed Oct 27, 2024
1 parent 211c683 commit 10db549
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ name: Build, Push, and Deploy Docker Image to EC2

on:
push:
branches:
- main
- dev # Trigger the workflow on push to the dev branch

#branches:
#- main
#- dev # Trigger the workflow on push to the dev branch
tags:
- 0.*
jobs:
build_and_deploy:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ app.use((req: Request, res: Response, next: NextFunction) => {
});

app.get('/', (req: Request, res: Response) => {
res.send('Hello World!');
res.send('Hello World with some bug!');
});

export default app;

0 comments on commit 10db549

Please sign in to comment.