diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6212ad7..73e13a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,18 +37,12 @@ jobs: DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USERNAME }} run: docker push $DOCKERHUB_USERNAME/node-argo-k8s:${GITHUB_SHA::7} - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.10' - - name: Update values.yaml env: GIT_TOKEN: ${{ secrets.TOKEN }} GIT_SHA: ${GITHUB_SHA::7} run: | - pip install -r requirements.txt + pip3 install -r requirements.txt ls -la - pwd - python update-values.py + cp update-values.py /home/runner/work/node-argo-k8s/node-argo-k8s/ + python3 node-argo-k8s/update-values.py \ No newline at end of file diff --git a/source-code/index.js b/source-code/index.js index 1eee253..622ca67 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 World!!!\n' + const msg = 'Hello World!!\n' res.end(msg); });