This commit is contained in:
panticmilos 2022-05-09 15:50:26 +02:00
parent dd2d49377f
commit 3a94d560e1

View File

@ -150,10 +150,8 @@ jobs:
steps:
- name: Get node version
run: |
version = $(curl https://nodejs.org/dist/index.json | jq '.[0] | .version')
id: version
echo "::set-output name=LATEST_NODE_VERSION::$version"
shell: bash
latest_node_version=$(echo $(curl https://nodejs.org/dist/index.json | jq '. [0].version'))
echo "::set-output name=LATEST_NODE_VERSION::$latest_node_version"
id: version
shell: bash
- uses: actions/checkout@v3
@ -171,4 +169,4 @@ jobs:
if: ${{ steps.version.outputs.LATEST_NODE_VERSION != steps.updatedVersion.outputs.NODE_VERSION_UPDATED}}
run: |
echo "Latest node version failed to download."
exit 1
exit 1