Skip to content

Commit

Permalink
Updated index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sohammohite committed Jun 22, 2024
1 parent bae9d6c commit fc4b9f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:

workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
build-and-push:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion source-code/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const port = process.env.PORT || 3000;

const server = http.createServer((req, res) => {
res.statusCode = 200;
const msg = 'Hello World!!\n'
const msg = 'Hello World!!!\n'
res.end(msg);
});

Expand Down

0 comments on commit fc4b9f3

Please sign in to comment.