File tree Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
- nodejs 20.19.1
1
+ nodejs 20.19.4
Original file line number Diff line number Diff line change 344
344
},
345
345
"update" : {
346
346
"node" : {
347
- "version" : " 20.19.1 "
347
+ "version" : " 20.19.4 "
348
348
},
349
349
"s3" : {
350
350
"xz" : true ,
Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ BRANCH_NAME="release-$(date +%s)"
35
35
echo " Creating git branch ${BRANCH_NAME} "
36
36
git checkout -b " ${BRANCH_NAME} "
37
37
38
+ echo " Updating Node.js version to latest..."
39
+ scripts/update-node-version-to-latest
40
+ echo " Done updating Node.js version"
41
+
38
42
echo " Installing dependencies with yarn..."
39
43
yarn
40
44
echo " Done installing dependencies with yarn"
Original file line number Diff line number Diff line change 19
19
echo " nodejs $version " >> .tool-versions
20
20
fi
21
21
22
+ # Install the Node.js version via asdf to ensure it's available
23
+ echo " Installing Node.js version $version via asdf..."
24
+ if asdf install nodejs " $version " ; then
25
+ echo " Successfully installed Node.js version $version "
26
+ else
27
+ echo " Warning: Failed to install Node.js version $version via asdf" >&2
28
+ echo " Continuing with package.json update..." >&2
29
+ fi
30
+
22
31
# Update the Node.js version in package.json's oclif update configuration
23
32
# Using node to update the JSON file correctly
24
33
node -e "
You can’t perform that action at this time.
0 commit comments