Skip to content

Commit d5aeadd

Browse files
committed
fix: get correct themes version
1 parent 1322f0b commit d5aeadd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-repos-updates.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
echo "Stage1 Find Updates"
33
LATEST_RELEASE=$(curl -s https://api.github.com/repos/telerik/kendo-ui-core/releases | grep tag_name | head -n 1 | cut -d '"' -f 4)
4-
LATEST_THEMES_RELEASE=$(curl -s https://api.github.com/repos/telerik/kendo-themes/releases | grep -B4 '"prerelease": false' | head -1 | cut -d '"' -f 4 | tr -d v)
4+
LATEST_THEMES_RELEASE=$(curl -s https://api.github.com/repos/telerik/kendo-themes/releases | grep -B5 '"prerelease": false' | head -1 | cut -d '"' -f 4 | tr -d v)
55
echo "Last release version is $LATEST_RELEASE"
66
echo "Last Themes release version is $LATEST_THEMES_RELEASE"
77

0 commit comments

Comments
 (0)