We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82e7354 commit ce0ac31Copy full SHA for ce0ac31
.github/actions/core-cicd/deployment/deploy-javascript-sdk/action.yml
@@ -59,10 +59,12 @@ runs:
59
run: |
60
echo "::group::Adding node and yarn to the PATH env"
61
BASE_PATH=${{ github.workspace }}/installs
62
- ls -R $BASE_PATH
63
- echo "PATH=$PATH:${BASE_PATH}/node/:${BASE_PATH}/node/yarn/dist/bin" >> $GITHUB_ENV
+ ls $BASE_PATH/node
+ echo "PATH=${BASE_PATH}/node/:${BASE_PATH}/node/yarn/dist/bin:$PATH" >> $GITHUB_ENV
64
echo "which node:"
65
which node
66
+ echo "node --version:"
67
+ ./$BASE_PATH/node/node --version
68
echo "::endgroup::"
69
shell: bash
70
0 commit comments