Skip to content

Commit

Permalink
Updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sohammohite committed Jun 23, 2024
1 parent 4ef60e6 commit c035cc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ jobs:
GIT_SHA: ${GITHUB_SHA::7}
run: |
pip3 install -r requirements.txt
ls -la
cp update-values.py /home/runner/work/node-argo-k8s/node-argo-k8s/
python3 node-argo-k8s/update-values.py
pwd
ls -la /home/runner/work/node-argo-k8s/node-argo-k8s/
python3 update-values.py
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 c035cc2

Please sign in to comment.