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 9c4db0c commit ac22bf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ jobs:

- name: Update values.yaml
run: |
sed -i 's/tag:.*/tag: '"${GITHUB_SHA::7}"'/' node-argo-k8s-helm/values.yaml
sed -i 's/latest/'"${GITHUB_SHA::7}"'/' node-argo-k8s-helm/values.yaml
#sed -i 's/tag:.*/tag: '"${GITHUB_SHA::7}"'/' node-argo-k8s-helm/values.yaml
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 Wold!\n'
const msg = 'Hello Node!\n'
res.end(msg);
});

Expand Down

0 comments on commit ac22bf2

Please sign in to comment.