Skip to content

Commit

Permalink
Updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sohammohite committed Jun 22, 2024
1 parent 21ab489 commit 30ed366
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,9 +43,9 @@ jobs:
valueFile: ./node-argo-k8s-helm/values.yaml
propertyPath: 'image.tag'
value: ${GITHUB_SHA::7}
#branch: main/${GITHUB_SHA::7}
branch: main
#createPR: true
branch: 'main/${GITHUB_SHA::7}'
targetBranch: main
createPR: true
message: 'Updated the image tag to ${GITHUB_SHA::7}'
commitUserName: github-actions[bot]
commitUserEmail: 41898282+github-actions[bot]@users.noreply.github.com
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 30ed366

Please sign in to comment.