Skip to content

Commit c0ec289

Browse files
committed
Tweaks
1 parent 0eb4334 commit c0ec289

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/beta-bot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ jobs:
9494
tag=$(jq -r ".directories[$i].packages[$j].tag // null" "$config")
9595
pattern=$(jq -r ".directories[$i].packages[$j].pattern // null" "$config")
9696
if [ "$tag" != "null" ]; then
97+
echo "Installing package $pkg with tag $tag in $dir"
9798
latest_version=$(npm view "$pkg@$tag" version)
9899
if [ -z "$latest_version" ]; then
99100
echo "::error::No version found for $pkg@$tag"
@@ -102,6 +103,7 @@ jobs:
102103
echo "Installing $pkg@$latest_version in $dir"
103104
npm install "$pkg@$latest_version" || { echo "::error::Failed to install $pkg@$latest_version"; exit 1; }
104105
else
106+
echo "Installing package $pkg with pattern $pattern in $dir"
105107
latest_version=$(npm view "$pkg" versions --json | jq -r ".[] | select(test(\"$pattern\"))" | sort -V | tail -n 1)
106108
if [ -z "$latest_version" ]; then
107109
echo "::error::No versions found for $pkg matching pattern $pattern"

beta/32bit/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

beta/32bit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
"dependencies": {
2424
"homebridge": "^2.0.0-beta.28",
2525
"homebridge-config-ui-x": "^5.4.2-beta.2",
26-
"node": "^22.10.0"
26+
"node": "^22.18.0"
2727
}
2828
}

0 commit comments

Comments
 (0)