diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f7d0173..9413f92 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/source-code/index.js b/source-code/index.js index 150c80e..54e5fef 100644 --- a/source-code/index.js +++ b/source-code/index.js @@ -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); });