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 805d09d commit 85cbdacCopy full SHA for 85cbdac
tools/ci/jenkins/deploy.sh
@@ -50,11 +50,13 @@ mkdir -p $updater_dir
50
for artifact in $artifacts ; do
51
echo "Processing file $artifact"
52
53
- VERSION=$(echo $(basename $artifact) | cut -f2- -d '_' | cut -f 1-2 -d '.')
54
- PLATFORM=$(echo $VERSION | cut -f 3 -d '-')
55
-
+ _file=$(echo $(basename $artifact) | cut -f2- -d '_')
+ VERSION=$(echo $_file | cut -f 1 -d '-')
+ PLATFORM=$(echo $_file | cut -f 3 -d '-' | cut -f 1-2 -d '.')
56
+
57
arch_dir=$PLATFORM
58
59
+ echo "- Version: $VERSION"
60
echo "- Platform: $arch_dir"
61
echo ""
62
0 commit comments